Skip to content

Commit 330d26e

Browse files
committed
fix code:status when appRelease has null region, its happen when for client side releases
1 parent f83ebd4 commit 330d26e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/schemas/app-releases-schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const appReleaseSchema = z.object({
1212
kind: z.string(),
1313
category: z.nativeEnum(AppReleaseCategory),
1414
state: z.string(),
15-
region: z.nativeEnum(Region),
15+
region: z.nativeEnum(Region).nullable(),
1616
data: z
1717
.object({
1818
url: z.string().optional(),

0 commit comments

Comments
 (0)