{{ $t('Bitcoin') }}
+Bitcoin
{{ $t('Send, receive and hold BTC in your wallet.') }}
diff --git a/src/components/AddressList.vue b/src/components/AddressList.vue index 99b66075d..7df67099b 100644 --- a/src/components/AddressList.vue +++ b/src/components/AddressList.vue @@ -185,7 +185,7 @@ export default defineComponent({ const btcInfo = computed(() => ({ address: availableExternalAddresses.value[0] || 'bitcoin', - label: context.root.$t('Bitcoin') as string, + label: 'Bitcoin', balance: btcAccountBalance.value, type: CryptoCurrency.BTC, })); @@ -194,7 +194,7 @@ export default defineComponent({ if (stablecoin.value === CryptoCurrency.USDC) { return { address: polygonAddressInfo.value?.address || 'usdc', - label: context.root.$t('USD Coin') as string, + label: 'USD Coin', balance: accountUsdcBalance.value + accountUsdcBridgedBalance.value, type: CryptoCurrency.USDC, @@ -204,7 +204,7 @@ export default defineComponent({ if (stablecoin.value === CryptoCurrency.USDT) { return { address: polygonAddressInfo.value?.address || 'usdt', - label: context.root.$t('Tether USD') as string, + label: 'Tether USD', balance: accountUsdtBridgedBalance.value, type: CryptoCurrency.USDT, }; diff --git a/src/components/LegacyAccountNotice.vue b/src/components/LegacyAccountNotice.vue index c6801ff5d..a244878e2 100644 --- a/src/components/LegacyAccountNotice.vue +++ b/src/components/LegacyAccountNotice.vue @@ -18,7 +18,7 @@
{{ $t('Send, receive and hold BTC in your wallet.') }}