Add persisted option to hide trending from sidebar

This commit is contained in:
Eric Bailey
2024-12-11 17:55:58 -06:00
parent 0ff6151ab8
commit 55b573a35a
2 changed files with 86 additions and 32 deletions
+1
View File
@@ -125,6 +125,7 @@ const schema = z.object({
subtitlesEnabled: z.boolean().optional(),
/** @deprecated */
mutedThreads: z.array(z.string()),
hideSidebarTrendingTopics: z.boolean().optional(),
})
export type Schema = z.infer<typeof schema>