Skip to content

Commit 5388c3d

Browse files
committed
Linter
1 parent 4383782 commit 5388c3d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
import { z } from 'zod';
22

33
export const inviteUserToGroupSchema = z.object({
4-
username: z.string().min(2),
4+
username: z.string().min(2)
55
});
66

77
export const modifyGroupAccessSchema = z.object({
88
users: z
99
.object({
1010
username: z.string().min(2),
11-
remove: z.boolean(),
11+
remove: z.boolean()
1212
})
13-
.array(),
13+
.array()
1414
});
1515

1616
export const fixedModifyGroupAccessSchema = z.object({
1717
users: z
1818
.object({
1919
username: z.string().min(2),
20-
removed: z.boolean(),
20+
removed: z.boolean()
2121
})
22-
.array(),
23-
});
22+
.array()
23+
});

0 commit comments

Comments
 (0)