Skip to content

Commit

Permalink
set indoor as optional (removed from backend response atm)
Browse files Browse the repository at this point in the history
  • Loading branch information
nimarion committed Dec 22, 2023
1 parent b8f63f0 commit fe78d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/athletes/results/result.zod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const ResultsByEvent = z.object({
z.object({
disciplineCode: z.string().nullable(),
discipline: z.string(),
indoor: z.boolean(),
indoor: z.boolean().nullable().default(false),
results: z.array(
z.object({
mark: z.string(),
Expand Down

0 comments on commit fe78d34

Please sign in to comment.