From 1537deae8e7e6decb503dbd2818ca900ac7f9f9e Mon Sep 17 00:00:00 2001 From: Douglas Daniel Date: Wed, 20 Nov 2024 10:15:05 -0600 Subject: [PATCH] fix(wallet): BTC Icon on Hardware Import Screen --- components/brave_wallet_ui/options/create-account-options.ts | 4 ++-- ui/webui/resources/BUILD.gn | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/brave_wallet_ui/options/create-account-options.ts b/components/brave_wallet_ui/options/create-account-options.ts index 38c96067aad6..bb031c4209b6 100644 --- a/components/brave_wallet_ui/options/create-account-options.ts +++ b/components/brave_wallet_ui/options/create-account-options.ts @@ -66,7 +66,7 @@ export const CreateAccountOptions = (options: { fixedNetwork: BraveWallet.BITCOIN_MAINNET, coin: BraveWallet.CoinType.BTC, icon: getNetworkLogo(BraveWallet.BITCOIN_MAINNET, 'BTC'), - chainIcons: [] + chainIcons: ['btc-color'] }) if ( isNetworkVisible(BraveWallet.CoinType.BTC, BraveWallet.BITCOIN_TESTNET) @@ -79,7 +79,7 @@ export const CreateAccountOptions = (options: { fixedNetwork: BraveWallet.BITCOIN_TESTNET, coin: BraveWallet.CoinType.BTC, icon: getNetworkLogo(BraveWallet.BITCOIN_TESTNET, 'BTC'), - chainIcons: [] + chainIcons: ['btc-color'] }) } } diff --git a/ui/webui/resources/BUILD.gn b/ui/webui/resources/BUILD.gn index f3a7b51bc393..dee0371819bb 100644 --- a/ui/webui/resources/BUILD.gn +++ b/ui/webui/resources/BUILD.gn @@ -181,6 +181,7 @@ leo_icons = [ "browser-extensions.svg", "browser-home.svg", "browser-ntp-widget.svg", + "btc-color.svg", "calendar-check.svg", "carat-down.svg", "carat-first.svg",