chore(core): remove old favorite (#7743)

closes AF-1203
This commit is contained in:
EYHN
2024-08-07 02:19:53 +00:00
parent c2cf331ff7
commit dd74cfea14
15 changed files with 92 additions and 631 deletions
-7
View File
@@ -31,13 +31,6 @@ export const runtimeFlagsSchema = z.object({
enableExperimentalFeature: z.boolean(),
enableInfoModal: z.boolean(),
enableOrganize: z.boolean(),
// show the new favorite, which exclusive to each user
enableNewFavorite: z.boolean(),
// show the old favorite
enableOldFavorite: z.boolean(),
// before 0.16, enableNewFavorite = false and enableOldFavorite = true
// after 0.16, enableNewFavorite = true and enableOldFavorite = false
// for debug purpose, we can enable both
});
export type RuntimeConfig = z.infer<typeof runtimeFlagsSchema>;