Skip to content

Commit

Permalink
fix: useEffect warning
Browse files Browse the repository at this point in the history
Signed-off-by: kulwindersingh-ant <[email protected]>
  • Loading branch information
kulwindersingh-ant committed May 11, 2024
1 parent e766494 commit 0c29fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pages/Send/Send.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function Send() {
} else {
setMaxDisabled(false);
}
}, [balance?.evmBalance, balance?.nativeBalance, activeTab, data?.to, err.to]);
}, [balance?.evmBalance, balance?.nativeBalance, activeTab, data?.to, err.to, MINIMUM_BALANCE]);

//Get fee if to and amount is present
useEffect(() => {
Expand Down

0 comments on commit 0c29fc0

Please sign in to comment.