Skip to content

Commit

Permalink
chore: toggle nfts_enabled feature flag (#1182)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSinclair authored Dec 7, 2023
1 parent d29132e commit 5482192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/state/currentSettings/featureFlags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const featureFlagsStore = createStore<FeatureFlagsStore>(
hw_wallets_enabled: true,
command_k_internal_shortcuts_enabled: false,
custom_rpc: false,
nfts_enabled: false,
nfts_enabled: true,
points: false,
},
setFeatureFlag: (key, value) => {
Expand All @@ -39,7 +39,7 @@ export const featureFlagsStore = createStore<FeatureFlagsStore>(
{
persist: {
name: 'featureFlagsStore',
version: 8,
version: 9,
},
},
);
Expand Down

0 comments on commit 5482192

Please sign in to comment.