Skip to content

Commit

Permalink
fix typos on balance checker (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
samelamin authored Nov 16, 2023
1 parent c629a5e commit f8b3206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/grants/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const GrantApplication = (): JSX.Element => {
Currency.IMBU
);

if (Number(balance) ?? 0 < IMBUE_DEPOSIT_REQURED)
if ((Number(balance) ?? 0) < IMBUE_DEPOSIT_REQURED)
return setError({
message: `Account has insufficient $IMBU (${IMBUE_DEPOSIT_REQURED} $IMBU) to cover the deposit fees`,
});
Expand Down

0 comments on commit f8b3206

Please sign in to comment.