Skip to content

Commit

Permalink
fix: make sure to deposit with 0 balance
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrishajev committed Dec 27, 2024
1 parent e74f3e5 commit c166b0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export const DeploymentDepositModal: React.FunctionComponent<DeploymentDepositMo
color: "secondary",
variant: "default",
side: "right",
disabled: !amount || isCheckingDepositor || (useDepositor && validGrants.length === 0) || !walletBalance,
disabled: !amount || isCheckingDepositor,
isLoading: isCheckingDepositor,
onClick: onDepositClick,
"data-testid": "deposit-modal-continue-button"
Expand Down

0 comments on commit c166b0e

Please sign in to comment.