Skip to content

Commit 5d57f53

Browse files
authored
fix(core): adjust feature flag (#8309)
1 parent a6c2f5d commit 5d57f53

File tree

1 file changed

+5
-5
lines changed
  • packages/common/infra/src/modules/feature-flag

1 file changed

+5
-5
lines changed

packages/common/infra/src/modules/feature-flag/constant.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ export const AFFINE_FLAGS = {
7979
bsFlag: 'enable_mind_map_import',
8080
displayName: 'Mind Map Import',
8181
description: 'Enables mind map import.',
82-
configurable: true,
83-
defaultState: false,
82+
configurable: false,
83+
defaultState: true,
8484
},
8585
enable_multi_view: {
8686
category: 'affine',
@@ -102,14 +102,14 @@ export const AFFINE_FLAGS = {
102102
feedbackLink:
103103
'https://discord.com/channels/959027316334407691/1280014319865696351/1280014319865696351',
104104
configurable: true,
105-
defaultState: false,
105+
defaultState: true,
106106
},
107107
enable_editor_settings: {
108108
category: 'affine',
109109
displayName: 'Editor Settings',
110110
description: 'Enables editor settings.',
111-
configurable: isNotStableBuild,
112-
defaultState: isNotStableBuild,
111+
configurable: false,
112+
defaultState: true,
113113
},
114114
enable_offline_mode: {
115115
category: 'affine',

0 commit comments

Comments
 (0)