chore: clean up types (#476)

This commit is contained in:
Henry
2026-04-20 22:35:39 +01:00
committed by GitHub
parent b4b07f3120
commit e32e400976
16 changed files with 84 additions and 39 deletions

View File

@@ -36,6 +36,7 @@ const cardMemberSchema = z.object({
email: z.string(),
user: z
.object({
id: z.string().nullable(),
name: z.string().nullable(),
})
.nullable(),
@@ -180,6 +181,7 @@ export const activityItemSchema = z.object({
publicId: z.string(),
user: z
.object({
id: z.string().nullable(),
name: z.string().nullable(),
email: z.string(),
image: z.string().nullable(),
@@ -189,6 +191,7 @@ export const activityItemSchema = z.object({
.nullable(),
user: z
.object({
id: z.string().nullable(),
name: z.string().nullable(),
email: z.string(),
image: z.string().nullable(),