refactor: user navigation and account settings

This commit is contained in:
Bart van der Braak 2024-02-02 08:31:32 +01:00
parent c15f98b86e
commit 2fed4ffdf6
6 changed files with 14 additions and 58 deletions

View file

@ -5,7 +5,7 @@
export const appearanceFormSchema = z.object({
theme: z.enum(['light', 'dark', 'system'], {
required_error: 'Please select a theme.'
}),
})
});
export type AppearanceFormSchema = typeof appearanceFormSchema;