Skip to content

Commit

Permalink
Auto-prettification
Browse files Browse the repository at this point in the history
  • Loading branch information
SirSaltyy authored and github-actions[bot] committed Sep 20, 2024
1 parent 0b9089b commit 1910749
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions web/components/profile/redeem-sweeps-buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ export function RedeemSweepsButtons(props: { user: User; className?: string }) {
{canRedeem ? (
<Button onClick={onClick} color={'amber'} className={className}>
Redeem
{redeemableCash && <CoinNumber
amount={redeemableCash}
className={'ml-1'}
coinType={'sweepies'}
/>}
{redeemableCash && (
<CoinNumber
amount={redeemableCash}
className={'ml-1'}
coinType={'sweepies'}
/>
)}
</Button>
) : (
<Button onClick={onClick} color={'amber'} className={className}>
Expand Down

0 comments on commit 1910749

Please sign in to comment.