Skip to content

Commit 89bf633

Browse files
CCM-11886: Fix linting
1 parent db261af commit 89bf633

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/event-schemas/src/event-envelope.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { z } from 'zod';
55
// https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/formats/json-format.md
66
// https://nhsd-confluence.digital.nhs.uk/x/pjIxOQ
77
const $CloudEvent = z.object({
8-
id: z.string().max(1_000).meta({
8+
id: z.string().max(1000).meta({
99
description: 'Unique ID for this event',
1010
}),
1111
time: z.iso.datetime().meta({

0 commit comments

Comments
 (0)