Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
YoctoProductions committed Feb 1, 2025
2 parents c8a9bcc + 01e1c07 commit a2f97fd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions client/src/ui/modals/ShopModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,14 @@ const ShopModal: React.FC<ShopModalProps> = ({ account }) => {
{skin?.ogprice}
</span><span>‎ ‎ ‎</span> </>
}
{skin.buyable ? '0' : ''}
{skin?.ultimate
? <img className={'gem'} src='assets/game/ultimacy.png' alt='Mastery' width={30} height={30} />
: <img className={'gem'} src='assets/game/gem.png' alt='Gems' width={30} height={30} />
}
{skin?.ultimate ? (
<>
{skin.buyable ? '0' : ''}
<img className="gem" src="assets/game/ultimacy.png" alt="Mastery" width={30} height={30} />
</>
) : (
skin?.buyable ? 'Free' : ''
)}
</p>
</>
)
Expand Down

0 comments on commit a2f97fd

Please sign in to comment.