Skip to content

Commit

Permalink
MODIFY: adds warmup optional field to SetSchema
Browse files Browse the repository at this point in the history
  • Loading branch information
srkuleo committed Oct 4, 2024
1 parent b32935a commit c1f2cb6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/util/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const SetSchema = z.object({
.regex(/^\d+(,\d+|\.\d+)?$/, {
message: "Weight must be whole or decimal number.",
}),
warmup: z.boolean().optional(),
});

export type SetType = z.infer<typeof SetSchema>;
Expand Down

0 comments on commit c1f2cb6

Please sign in to comment.