Skip to content

Commit

Permalink
fix: only 1 or 2 when tipping
Browse files Browse the repository at this point in the history
  • Loading branch information
songkeys committed Jul 2, 2024
1 parent 747d2ea commit 5c9ff3a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/renderer/src/modules/wallet/tip-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,9 @@ export const TipModalContent: FC<{
value={amount.toString()}
onValueChange={(value) => setAmount(Number(value))}
>
<div className="grid grid-cols-3 gap-2">
<div className="grid grid-cols-2 gap-2">
<RadioCard wrapperClassName="justify-center" label="1" value="1" />
<RadioCard wrapperClassName="justify-center" label="2" value="2" />
<RadioCard wrapperClassName="justify-center" label="5" value="5" />
</div>
</RadioGroup>

Expand Down

0 comments on commit 5c9ff3a

Please sign in to comment.