Skip to content

Commit

Permalink
quick bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo authored and donnyquixotic committed Jul 31, 2023
1 parent 360a9f0 commit 1912162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/staking/SavingsTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default defineComponent({
if (
toSavingAmount.value === '0' ||
toSavingAmount.value === '' ||
Number(toSavingAmount.value) >= eligibleStaked.value
Number(toSavingAmount.value) > eligibleStaked.value
) {
return;
}
Expand Down

0 comments on commit 1912162

Please sign in to comment.