chore(core): add feature flag for ios AI button (#10150)

close AF-2209, AF-2104
This commit is contained in:
CatsJuice
2025-02-13 09:10:14 +00:00
parent 7c04ef4f4e
commit 887bbcf641
2 changed files with 12 additions and 1 deletions

View File

@@ -260,6 +260,13 @@ export const AFFINE_FLAGS = {
configurable: isCanaryBuild,
defaultState: false,
},
enable_ios_ai_button: {
category: 'affine',
displayName: 'Enable AI Button',
description: 'Enable AI Button on iOS',
configurable: BUILD_CONFIG.isIOS,
defaultState: false,
},
} satisfies { [key in string]: FlagInfo };
// oxlint-disable-next-line no-redeclare