From 16b23c551669e8cab2855c1c1b00b47cfd289ba8 Mon Sep 17 00:00:00 2001 From: arnold Date: Mon, 17 Jun 2024 21:13:25 +0200 Subject: [PATCH] Fix bridge withdraw form. --- .../bridge-swap/steps/withdraw-form/withdraw-form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/bridge/bridge-swap/steps/withdraw-form/withdraw-form.component.ts b/src/app/pages/bridge/bridge-swap/steps/withdraw-form/withdraw-form.component.ts index 38f41dc2..a99b0052 100644 --- a/src/app/pages/bridge/bridge-swap/steps/withdraw-form/withdraw-form.component.ts +++ b/src/app/pages/bridge/bridge-swap/steps/withdraw-form/withdraw-form.component.ts @@ -212,7 +212,7 @@ export class WithdrawFormComponent implements OnInit, OnDestroy { transfer() { const { amount, address, memo } = this.withdrawForm.value; - const tokenType = this.swapType === SwapType.MAIN_ERC20 ? 'LTO20' : this.swapType === SwapType.MAIN_BINANCE ? 'BINANCE' : 'BEP20'; + const tokenType = this.swapType === SwapType.MAIN_ERC20 ? 'LTO20' : this.swapType === SwapType.MAIN_BINANCE ? 'BINANCE' : 'BSC'; this.transfer$ = this._wallet.withdraw( address, amount,