diff --git a/src/components/search/SearchPrice.jsx b/src/components/search/SearchPrice.jsx index 5c17360..ab5c547 100644 --- a/src/components/search/SearchPrice.jsx +++ b/src/components/search/SearchPrice.jsx @@ -6,7 +6,13 @@ export const SearchPrice = ({ details }) => { return ; } - if (!details.isAvailable || details.priceInWei === 0n) { + const showPrice = + details.publicRegistrationOpen && + details.priceInWei > 0n && + details.labelValid && + details.isAvailable; + + if (!showPrice) { return null; }