Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simke9445 committed Mar 18, 2024
1 parent 3e81b8c commit 7a16f47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const useMigrateJobForm = () => {
...input,
};

const uAmount = state.token && input.amount ? microfy(input.amount, state.token.decimals) : Big(0);
const uAmount = state.token && state.amount ? microfy(state.amount, state.token.decimals) : Big(0);

const amountError = uAmount.gt(state.balance) ? 'The amount can not exceed the maximum balance' : undefined;

Expand Down

0 comments on commit 7a16f47

Please sign in to comment.