From f90182158a15305177031683e2a4409ed55ba568 Mon Sep 17 00:00:00 2001 From: EtherWizard33 Date: Wed, 25 Dec 2024 13:10:37 +0300 Subject: [PATCH] chore: toggling the chain permissions feature flags so they are always true, to check CI --- app/util/networks/index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/util/networks/index.js b/app/util/networks/index.js index 461f8ea6b87..a7ac9605916 100644 --- a/app/util/networks/index.js +++ b/app/util/networks/index.js @@ -488,11 +488,9 @@ export const getBlockExplorerTxUrl = ( export const getIsNetworkOnboarded = (chainId, networkOnboardedState) => networkOnboardedState[chainId]; -export const isMultichainVersion1Enabled = - process.env.MM_MULTICHAIN_V1_ENABLED === 'true'; +export const isMultichainVersion1Enabled = true; -export const isChainPermissionsFeatureEnabled = - process.env.MM_CHAIN_PERMISSIONS === 'true'; +export const isChainPermissionsFeatureEnabled = true; export const isPermissionsSettingsV1Enabled = process.env.MM_PERMISSIONS_SETTINGS_V1_ENABLED === 'true';