Skip to content

Commit

Permalink
fix(wallet): Don't Capitalize c in Zcash Account Name Suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
Douglashdaniel committed Jan 14, 2025
1 parent d9d5ac7 commit 84a67ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/brave_wallet_ui/options/create-account-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const CreateAccountOptions = (options: {
if (options.isZCashEnabled) {
accounts.push({
description: getLocale('braveWalletCreateAccountZCashDescription'),
name: 'ZCash',
name: 'Zcash',
fixedNetwork: BraveWallet.Z_CASH_MAINNET,
coin: BraveWallet.CoinType.ZEC,
icon: getNetworkLogo(BraveWallet.Z_CASH_MAINNET, 'ZEC'),
Expand All @@ -100,7 +100,7 @@ export const CreateAccountOptions = (options: {
description: getLocale(
'braveWalletCreateAccountZCashTestnetDescription'
),
name: 'ZCash Testnet',
name: 'Zcash Testnet',
fixedNetwork: BraveWallet.Z_CASH_TESTNET,
coin: BraveWallet.CoinType.ZEC,
icon: getNetworkLogo(BraveWallet.Z_CASH_TESTNET, 'ZEC'),
Expand Down

0 comments on commit 84a67ff

Please sign in to comment.