diff --git a/packages/bridge-ui/src/components/Bridge/FungibleBridgeComponents/ReviewStep/ReviewStep.svelte b/packages/bridge-ui/src/components/Bridge/FungibleBridgeComponents/ReviewStep/ReviewStep.svelte index fd325673f3..7441f7c8e6 100644 --- a/packages/bridge-ui/src/components/Bridge/FungibleBridgeComponents/ReviewStep/ReviewStep.svelte +++ b/packages/bridge-ui/src/components/Bridge/FungibleBridgeComponents/ReviewStep/ReviewStep.svelte @@ -16,7 +16,7 @@ } from '$components/Bridge/state'; import { PUBLIC_SLOW_L1_BRIDGING_WARNING } from '$env/static/public'; import { LayerType } from '$libs/chain'; - import { isStablecoin, isSupported, isWrapped, type Token, TokenType } from '$libs/token'; + import { isWrapped, type Token, TokenType } from '$libs/token'; import { isToken } from '$libs/token/isToken'; import { account } from '$stores/account'; import { ethBalance } from '$stores/balance'; @@ -36,14 +36,12 @@ $: wrapped = $selectedToken !== null && isWrapped($selectedToken as Token); - $: unsupportedStableCoin = - $selectedToken !== null && !isSupported($selectedToken as Token) && isStablecoin($selectedToken as Token); + // $: unsupportedStableCoin = + // $selectedToken !== null && !isSupported($selectedToken as Token) && isStablecoin($selectedToken as Token); $: wrappedAssetWarning = $t('bridge.alerts.wrapped_eth'); - $: stableCoinWarning = $t('bridge.alerts.stable_coin'); - - $: if (wrapped || unsupportedStableCoin) { + $: if (wrapped) { needsManualReviewConfirmation = true; } else { needsManualReviewConfirmation = false; @@ -129,8 +127,3 @@ Recipient & Processing Fee {@html wrappedAssetWarning} {/if} - -{#if unsupportedStableCoin} - - {@html stableCoinWarning} -{/if} diff --git a/packages/bridge-ui/src/i18n/en.json b/packages/bridge-ui/src/i18n/en.json index 460f98ee46..2436297943 100644 --- a/packages/bridge-ui/src/i18n/en.json +++ b/packages/bridge-ui/src/i18n/en.json @@ -42,7 +42,6 @@ "not_enough_funds": "You do not have enough ETH to cover the processing fee and transaction fee. Please add more ETH to your wallet (>= 0.0015 ETH).", "slow_bridging": "Please note: Bridging to L1 will take around 24hrs!", "smart_contract_wallet": "It seems you are using a smart contract wallet. Please double check that the recipient matches your wallet on the destination or change it accordingly.", - "stable_coin": "You are bridging a stable coin. For USDC, we are currently partnering with Stargate Bridge for liquidity. Consider using their bridge, as the ecosystem partners are likely using their bridged version", "wrapped_eth": "You are bridging wrapped ETH. Please be aware that un-wrapping will only work on the original chain of the token, NOT on the destination." }, "button": {