diff --git a/liquidity/ui/src/components/Accounts/Deposit/DepositForm.tsx b/liquidity/ui/src/components/Accounts/Deposit/DepositForm.tsx index 5ccb86823..64fbd0a54 100644 --- a/liquidity/ui/src/components/Accounts/Deposit/DepositForm.tsx +++ b/liquidity/ui/src/components/Accounts/Deposit/DepositForm.tsx @@ -73,7 +73,7 @@ export function DepositFormUi({ return snxBalance?.transferable; } if (collateralType?.symbol === 'USDC') { - return tokenBalance?.add(accountCollateral?.availableCollateral); + return tokenBalance?.add(accountCollateral?.availableCollateral || new Wei(0)); } if (collateralType?.symbol !== 'WETH') { return tokenBalance;