Skip to content

Commit

Permalink
Make sure id is required
Browse files Browse the repository at this point in the history
  • Loading branch information
abailly-akamai committed Mar 4, 2024
1 parent a89c673 commit 82d2fb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/validation/src/linodes.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ const MetadataSchema = object({
});

const PlacementGroupPayloadSchema = object({
id: number().notRequired().nullable(true),
id: number().required().nullable(true),
});

export const CreateLinodeSchema = object({
Expand Down

0 comments on commit 82d2fb0

Please sign in to comment.