Skip to content

Commit

Permalink
fix: redeeming tokens < 0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomquirk committed Sep 4, 2023
1 parent c85e1cc commit 00fe140
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export function V2V3BurnOrRedeemModal({
okText={modalTitle}
okButtonProps={{
disabled:
!redeemAmount || parseInt(redeemAmount) === 0 || !checkedLegal,
!redeemAmount || parseFloat(redeemAmount) === 0 || !checkedLegal,
}}
width={540}
centered
Expand Down

1 comment on commit 00fe140

@vercel
Copy link

@vercel vercel bot commented on 00fe140 Sep 4, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.