From 159f90f48e8bda99cace4e1349f96e6c43b8bbda Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Tue, 12 Apr 2022 10:24:43 +0200 Subject: [PATCH] re-disable wallet & browser by default Fixes #5476 --- src/app/global/local_account_sensitive_settings.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/global/local_account_sensitive_settings.nim b/src/app/global/local_account_sensitive_settings.nim index 7a07a106a1..123458305f 100644 --- a/src/app/global/local_account_sensitive_settings.nim +++ b/src/app/global/local_account_sensitive_settings.nim @@ -8,11 +8,11 @@ const LSS_KEY_WALLET_SPLIT_VIEW* = "walletSplitView" const LSS_KEY_PROFILE_SPLIT_VIEW* = "profileSplitView" const LSS_KEY_COMMUNITIES_ENABLED* = "communitiesEnabled" const DEFAULT_COMMUNITIES_ENABLED = false -const LSS_KEY_IS_WALLET_ENABLED* = "isWalletEnabled" +const LSS_KEY_IS_WALLET_ENABLED* = "isExperimentalWalletEnabled" const DEFAULT_IS_WALLET_ENABLED = false const LSS_KEY_NODE_MANAGEMENT_ENABLED* = "nodeManagementEnabled" const DEFAULT_NODE_MANAGEMENT_ENABLED = false -const LSS_KEY_IS_BROWSER_ENABLED* = "isBrowserEnabled" +const LSS_KEY_IS_BROWSER_ENABLED* = "isExperimentalBrowserEnabled" const DEFAULT_IS_BROWSER_ENABLED = false const LSS_KEY_IS_ACTIVITY_CENTER_ENABLED* = "isActivityCenterEnabled" const DEFAULT_IS_ACTIVITY_CENTER_ENABLED = false