diff --git a/src/components/settings-modal/crypto-wallets-setting/crypto-wallets-setting.tsx b/src/components/settings-modal/crypto-wallets-setting/crypto-wallets-setting.tsx index bb921cfe..ca697633 100644 --- a/src/components/settings-modal/crypto-wallets-setting/crypto-wallets-setting.tsx +++ b/src/components/settings-modal/crypto-wallets-setting/crypto-wallets-setting.tsx @@ -90,11 +90,9 @@ const CryptoWalletsForm = ({ account }: { account: Account | undefined }) => { const _removeWallet = (index: number) => { const wallet = walletsArray[index]; if (window.confirm(t('delete_confirm', { value: wallet.chainTicker, interpolation: { escapeValue: false } }))) { - if (window.confirm(t('double_confirm'))) { - const newArray = [...walletsArray.slice(0, index), ...walletsArray.slice(index + 1)]; - setWalletsArray(newArray); - setSelectedWallet(0); - } + const newArray = [...walletsArray.slice(0, index), ...walletsArray.slice(index + 1)]; + setWalletsArray(newArray); + setSelectedWallet(0); } else { return; }