mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-29 03:20:46 +08:00
chore: lower min fps to 15
This commit is contained in:
parent
a5f2a5be9f
commit
bd5b91e669
1 changed files with 1 additions and 1 deletions
|
|
@ -2,7 +2,7 @@ import { engine } from "animejs";
|
|||
import { LocalStorageWithSchema } from "./utils/local-storage-with-schema";
|
||||
import { z } from "zod";
|
||||
|
||||
export const fpsLimitSchema = z.number().int().min(30).max(1000);
|
||||
export const fpsLimitSchema = z.number().int().min(15).max(1000);
|
||||
|
||||
const fpsLimit = new LocalStorageWithSchema({
|
||||
key: "fpsLimit",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue