diff options
Diffstat (limited to 'packages/trpc/routers/lists.ts')
| -rw-r--r-- | packages/trpc/routers/lists.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/trpc/routers/lists.ts b/packages/trpc/routers/lists.ts index 5eb0baff..296679f3 100644 --- a/packages/trpc/routers/lists.ts +++ b/packages/trpc/routers/lists.ts @@ -301,7 +301,7 @@ export const listsAppRouter = router({ user: z.object({ id: z.string(), name: z.string(), - email: z.string(), + email: z.string().nullable(), }), }), ), @@ -309,7 +309,7 @@ export const listsAppRouter = router({ .object({ id: z.string(), name: z.string(), - email: z.string(), + email: z.string().nullable(), }) .nullable(), }), |
