diff --git a/dadjokes-onchain/frontend/src/components/WithdrawSection.js b/dadjokes-onchain/frontend/src/components/WithdrawSection.js index a53020f..c188e07 100644 --- a/dadjokes-onchain/frontend/src/components/WithdrawSection.js +++ b/dadjokes-onchain/frontend/src/components/WithdrawSection.js @@ -1,7 +1,7 @@ const WithdrawSection = ({ balance, handleWithdraw }) => { return ( <> - {((balance !== null && parseFloat(balance) > 0) || !balance) && ( + {balance !== null && parseFloat(balance) > 0 && (