From 7a401e1105a43acb81cebe73c06c7050a8a76d19 Mon Sep 17 00:00:00 2001 From: Nuo Xu Date: Wed, 4 Feb 2026 12:06:10 -0500 Subject: [PATCH] [iOS][Wallet] fix wrong kZCashFeatureVariations enable value (#33665) fix wrong kZCashFeatureVariations enable value --- ios/browser/flags/about_flags.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/browser/flags/about_flags.mm b/ios/browser/flags/about_flags.mm index 305aca319fa..5516e9308d0 100644 --- a/ios/browser/flags/about_flags.mm +++ b/ios/browser/flags/about_flags.mm @@ -36,7 +36,7 @@ const flags_ui::FeatureEntry::FeatureParam kZCashShieldedTransactionsDisabled[] = { {"zcash_shielded_transactions_enabled", "false"}}; const flags_ui::FeatureEntry::FeatureParam kZCashShieldedTransactionsEnabled[] = - {{"zcash_shielded_transactions_enabled", "false"}}; + {{"zcash_shielded_transactions_enabled", "true"}}; const flags_ui::FeatureEntry::FeatureVariation kZCashFeatureVariations[] = { {"- Shielded support disabled", kZCashShieldedTransactionsDisabled, std::size(kZCashShieldedTransactionsDisabled), nullptr},