Skip to content

Commit

Permalink
ci: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Oct 7, 2024
1 parent 77116f1 commit 7723d22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/server/src/v1/monitors/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const MonitorSchema = z
]);
}
},
z.array(z.enum(flyRegions))
z.array(z.enum(flyRegions)),
)
.default([])
.openapi({
Expand Down Expand Up @@ -161,7 +161,7 @@ export const MonitorSchema = z
]);
}
},
z.array(z.object({ key: z.string(), value: z.string() })).default([])
z.array(z.object({ key: z.string(), value: z.string() })).default([]),
)
.nullish()
.openapi({
Expand Down

0 comments on commit 7723d22

Please sign in to comment.