chore: lint

This commit is contained in:
190km
2024-12-26 01:29:18 +01:00
parent 46348f43f6
commit f242f5c65e

View File

@@ -35,7 +35,8 @@ import { useEffect } from "react";
import { toast } from "sonner";
const languageCodes = Object.values(Languages).map(lang => lang.code) as string[];
const languageCodes = Object.values(Languages).map(lang => lang.code) as [string, ...string[]];
const appearanceFormSchema = z.object({
theme: z.enum(["light", "dark", "system"], {
required_error: "Please select a theme.",