Skip to content

Commit

Permalink
fix: update carousel content condition
Browse files Browse the repository at this point in the history
  • Loading branch information
lubega-deriv committed May 3, 2024
1 parent 9d6052a commit 7b8fef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wallets/src/components/WalletCard/WalletCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const WalletCard: React.FC<TProps> = ({
</div>
<div className='wallets-card__details-bottom'>
<WalletText color={isDemo ? 'white' : 'general'} size={isCarouselContent ? 'md' : '2xs'}>
{currency} {isDemo ? 'Demo' : ''} Wallet
{currency} {isDemo && isCarouselContent ? 'Demo' : ''} Wallet
</WalletText>
{isLoading ? (
<div
Expand Down

0 comments on commit 7b8fef1

Please sign in to comment.