diff --git a/packages/nextjs/app/simpleMint/page.tsx b/packages/nextjs/app/simpleMint/page.tsx index 8857a83..81e0d7a 100644 --- a/packages/nextjs/app/simpleMint/page.tsx +++ b/packages/nextjs/app/simpleMint/page.tsx @@ -153,7 +153,7 @@ const SimpleMint: NextPage = () => {
- Collection Name: {collectionName || "Not provided"} + Collection Name:{" "} + {collectionName ? ( + {collectionName} + ) : ( + Not provided + )}
- Symbol: {collectionSymbol || "Not provided"} + Symbol:{" "} + {collectionSymbol ? ( + {collectionSymbol} + ) : ( + Not provided + )}
- Description: {description || "Not provided"} -
-- Attributes: -
-+ Attributes: +
+