mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
🐛 Fix time format schema (#1593)
This commit is contained in:
parent
c25ee09855
commit
8c84a92a58
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ import { nextAuthConfig } from "./next-auth.config";
|
|||
|
||||
const sessionUpdateSchema = z.object({
|
||||
locale: z.string().nullish(),
|
||||
timeFormat: z.enum(["12h", "24h"]).nullish(),
|
||||
timeFormat: z.enum(["hours12", "hours24"]).nullish(),
|
||||
timeZone: z.string().nullish(),
|
||||
weekStart: z.number().nullish(),
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue