Skip to content

Commit c51e994

Browse files
committed
Remove extra key
1 parent d998c27 commit c51e994

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/zod/workspace.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ export const hex_color_code = z.string().refine((value) => {
1111
export const workspace = z.object({
1212
workspace_id: z.string(),
1313
name: z.string(),
14-
publishable_key: z.string(),
1514
created_at: z.string(),
1615
is_sandbox: z.boolean(),
17-
publishable_key: z.string().optional(),
16+
publishable_key: z.string(),
1817
is_publishable_key_auth_enabled: z.boolean(),
1918
is_suspended: z.boolean(),
2019
company_name: z.string(),

0 commit comments

Comments
 (0)