Skip to content

Commit

Permalink
feat: removed Flex and marketplace show only name if 1 item on lounge (
Browse files Browse the repository at this point in the history
  • Loading branch information
YohanTz authored Apr 23, 2024
1 parent 083078b commit 46446e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function MarketplacesList() {
/>
<ArrowIcon className="flex-shrink-0" />
</a>
<a
{/* <a
className="flex h-[5.625rem] items-center justify-between rounded-xl border border-asteroid-grey-100 bg-white px-6 transition-colors hover:bg-space-blue-100 dark:border-space-blue-800 dark:bg-space-blue-900 dark:hover:bg-space-blue-800"
href="https://hyperflex.market/starknet/collection/0x02acee8c430f62333cf0e0e7a94b2347b5513b4c25f699461dd8d7b23c072478"
>
Expand All @@ -91,7 +91,7 @@ export default function MarketplacesList() {
width={68}
/>
<ArrowIcon className="flex-shrink-0" />
</a>
</a> */}
<a
className="flex h-[5.625rem] items-center justify-between rounded-xl border border-asteroid-grey-100 bg-white px-6 transition-colors hover:bg-space-blue-100 dark:border-space-blue-800 dark:bg-space-blue-900 dark:hover:bg-space-blue-800"
href="https://ventory.gg/collection/0x02acee8c430f62333cf0e0e7a94b2347b5513b4c25f699461dd8d7b23c072478"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ export default function NftTransferItem({
/>
<div className="text-left">
<Typography component="p" variant="body_text_bold_14">
{collectionName} Collection
{tokenIds.length === 1
? `${collectionName} #${tokenIds[0]}`
: `${collectionName} Collection`}
</Typography>
<Typography
className="dark:text-space-blue-300"
Expand Down

0 comments on commit 46446e2

Please sign in to comment.