Skip to content

Commit

Permalink
Update minumum input alert
Browse files Browse the repository at this point in the history
  • Loading branch information
JayJay1024 committed May 9, 2024
1 parent 1d04f06 commit 0e5270b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/balance-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export default function BalanceInput({
)}`}
/>
) : requireMin ? (
<InputAlert text={`* Minimum: ${formatBalance(min ?? BN_ZERO, asset?.decimals ?? 0)}`} />
<InputAlert text={`* At least ${formatBalance(min ?? BN_ZERO, asset?.decimals ?? 0)} for tx fee`} />
) : insufficient ? (
<InputAlert text="* Insufficient" />
) : null}
Expand Down

0 comments on commit 0e5270b

Please sign in to comment.