diff options
author | dan <dan.abramov@gmail.com> | 2024-11-25 20:30:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-25 20:30:33 +0000 |
commit | c6c6c91d7b0b549af28aa14dedf194e65770eb90 (patch) | |
tree | 6bbf6f6271784dde9322c6d61a09faba06653948 /src/state/persisted/schema.ts | |
parent | b0c36383a9a7304f94c2bb19f7cc4b37e0b4f637 (diff) | |
download | voidsky-c6c6c91d7b0b549af28aa14dedf194e65770eb90.tar.zst |
This reverts commit ac5b2cf31f2bb45f1bf8a180705249d3cce8017d.
Diffstat (limited to 'src/state/persisted/schema.ts')
-rw-r--r-- | src/state/persisted/schema.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/state/persisted/schema.ts b/src/state/persisted/schema.ts index 85a6bf8e2..804017949 100644 --- a/src/state/persisted/schema.ts +++ b/src/state/persisted/schema.ts @@ -124,7 +124,6 @@ const schema = z.object({ subtitlesEnabled: z.boolean().optional(), /** @deprecated */ mutedThreads: z.array(z.string()), - optOutOfUtm: z.boolean().optional(), }) export type Schema = z.infer<typeof schema> @@ -170,7 +169,6 @@ export const defaults: Schema = { kawaii: false, hasCheckedForStarterPack: false, subtitlesEnabled: true, - optOutOfUtm: false, } export function tryParse(rawData: string): Schema | undefined { |