display deposit & withdraw modal on mobile

This commit is contained in:
Maximilian Schneider 2021-10-06 20:08:35 +02:00
parent 97bb02e593
commit 3e65e53101
1 changed files with 15 additions and 0 deletions

View File

@ -510,6 +510,21 @@ const BalancesTable = ({ showZeroBalances = false }) => {
}
/>
))}
{showDepositModal && (
<DepositModal
isOpen={showDepositModal}
onClose={() => setShowDepositModal(false)}
tokenSymbol={actionSymbol}
/>
)}
{showWithdrawModal && (
<WithdrawModal
isOpen={showWithdrawModal}
onClose={() => setShowWithdrawModal(false)}
tokenSymbol={actionSymbol}
/>
)}
</>
)
) : (