about summary refs log tree commit diff
path: root/src/state/persisted/schema.ts
diff options
context:
space:
mode:
authordan <dan.abramov@gmail.com>2024-11-25 20:30:33 +0000
committerGitHub <noreply@github.com>2024-11-25 20:30:33 +0000
commitc6c6c91d7b0b549af28aa14dedf194e65770eb90 (patch)
tree6bbf6f6271784dde9322c6d61a09faba06653948 /src/state/persisted/schema.ts
parentb0c36383a9a7304f94c2bb19f7cc4b37e0b4f637 (diff)
downloadvoidsky-c6c6c91d7b0b549af28aa14dedf194e65770eb90.tar.zst
Revert "Pass referrer on native (with an opt out) (#6648)" (#6732)
This reverts commit ac5b2cf31f2bb45f1bf8a180705249d3cce8017d.
Diffstat (limited to 'src/state/persisted/schema.ts')
-rw-r--r--src/state/persisted/schema.ts2
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 {