Skip to content

Commit

Permalink
fix(core): adjust feature flag (#8309)
Browse files Browse the repository at this point in the history
  • Loading branch information
EYHN authored Sep 19, 2024
1 parent a6c2f5d commit 5d57f53
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/common/infra/src/modules/feature-flag/constant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ export const AFFINE_FLAGS = {
bsFlag: 'enable_mind_map_import',
displayName: 'Mind Map Import',
description: 'Enables mind map import.',
configurable: true,
defaultState: false,
configurable: false,
defaultState: true,
},
enable_multi_view: {
category: 'affine',
Expand All @@ -102,14 +102,14 @@ export const AFFINE_FLAGS = {
feedbackLink:
'https://discord.com/channels/959027316334407691/1280014319865696351/1280014319865696351',
configurable: true,
defaultState: false,
defaultState: true,
},
enable_editor_settings: {
category: 'affine',
displayName: 'Editor Settings',
description: 'Enables editor settings.',
configurable: isNotStableBuild,
defaultState: isNotStableBuild,
configurable: false,
defaultState: true,
},
enable_offline_mode: {
category: 'affine',
Expand Down

0 comments on commit 5d57f53

Please sign in to comment.