diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-01 08:59:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-01 08:59:40 +0100 |
commit | 81ae7e425dc52846c5d4c282a0422a3875d84e2f (patch) | |
tree | fd268c721913a2d6548b299f4e3193bdb5cd5883 /src/state/persisted/schema.ts | |
parent | 181e61bedb21003921fa21f6e8b86baf918d62bf (diff) | |
download | voidsky-81ae7e425dc52846c5d4c282a0422a3875d84e2f.tar.zst |
Add kawaii mode (#3773)
Diffstat (limited to 'src/state/persisted/schema.ts')
-rw-r--r-- | src/state/persisted/schema.ts | 2 |
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, } |