Skip to content

Commit

Permalink
chore: toggling the chain permissions feature flags so they are alway…
Browse files Browse the repository at this point in the history
…s true, to check CI
  • Loading branch information
EtherWizard33 committed Dec 25, 2024
1 parent 5fe6ace commit f901821
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/util/networks/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit f901821

Please sign in to comment.