Skip to content

Commit

Permalink
fix: fix toast wrong tip amount (#1139)
Browse files Browse the repository at this point in the history
  • Loading branch information
CorrectRoadH authored Oct 25, 2024
1 parent a45cdf5 commit 7c7be10
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/renderer/src/modules/wallet/tip-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ const TipModalContent_: FC<{
<RadioGroup value={amount.toString()} onValueChange={(value) => setAmount(Number(value))}>
<div className="grid grid-cols-2 gap-2">
<RadioCard
disabled={tipMutation.isPending}
wrapperClassName="justify-center"
label={
<span className="flex items-center gap-1">
Expand All @@ -154,6 +155,7 @@ const TipModalContent_: FC<{
value="10"
/>
<RadioCard
disabled={tipMutation.isPending}
wrapperClassName="justify-center group"
label={
<span className="flex items-center gap-1">
Expand Down

0 comments on commit 7c7be10

Please sign in to comment.