about summary refs log tree commit diff
path: root/src/state/persisted/schema.ts
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2024-05-01 08:59:40 +0100
committerGitHub <noreply@github.com>2024-05-01 08:59:40 +0100
commit81ae7e425dc52846c5d4c282a0422a3875d84e2f (patch)
treefd268c721913a2d6548b299f4e3193bdb5cd5883 /src/state/persisted/schema.ts
parent181e61bedb21003921fa21f6e8b86baf918d62bf (diff)
downloadvoidsky-81ae7e425dc52846c5d4c282a0422a3875d84e2f.tar.zst
Add kawaii mode (#3773)
Diffstat (limited to 'src/state/persisted/schema.ts')
-rw-r--r--src/state/persisted/schema.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/persisted/schema.ts b/src/state/persisted/schema.ts
index 43f08e12e..77a79b78e 100644
--- a/src/state/persisted/schema.ts
+++ b/src/state/persisted/schema.ts
@@ -80,6 +80,7 @@ export const schema = z.object({
   pdsAddressHistory: z.array(z.string()).optional(),
   disableHaptics: z.boolean().optional(),
   disableAutoplay: z.boolean().optional(),
+  kawaii: z.boolean().optional(),
 })
 export type Schema = z.infer<typeof schema>
 
@@ -117,4 +118,5 @@ export const defaults: Schema = {
   pdsAddressHistory: [],
   disableHaptics: false,
   disableAutoplay: prefersReducedMotion,
+  kawaii: false,
 }