Skip to content

Commit

Permalink
Merge pull request #27222 from brave/fix-wallet-dont-capitalize-c-in-…
Browse files Browse the repository at this point in the history
…zcash-account-name-suggestion

fix(wallet): Don't Capitalize c in Zcash Account Name Suggestion
  • Loading branch information
Douglashdaniel authored Jan 14, 2025
2 parents 04b7fc9 + 84a67ff commit 5869407
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 5869407

Please sign in to comment.