Skip to content

Commit a1a5f24

Browse files
authored
fix check types (calcom#25907)
1 parent 94e0d47 commit a1a5f24

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

packages/features/ee/users/components/UserForm.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ interface User {
2222
weekStart: string;
2323
theme: string | null;
2424
defaultScheduleId: number | null;
25-
locale: string;
26-
timeFormat: number;
27-
allowDynamicBooking: boolean;
28-
identityProvider: string;
29-
role: string;
25+
locale: string | null;
26+
timeFormat: number | null;
27+
allowDynamicBooking: boolean | null;
28+
identityProvider: string | null;
29+
role: string | null;
3030
avatarUrl: string | null;
3131
createdDate?: string | Date;
3232
}

packages/trpc/server/routers/viewer/slots/util.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export interface IGetAvailableSlots {
8080
toUser?: IToUser | undefined;
8181
reason?: string | undefined;
8282
emoji?: string | undefined;
83+
showNotePublicly?: boolean | undefined;
8384
}[]
8485
>;
8586
// eslint-disable-next-line @typescript-eslint/no-explicit-any

0 commit comments

Comments
 (0)