Skip to content

Commit fe01fc3

Browse files
committed
fix: nullable to nullish for userid
1 parent 21cd17b commit fe01fc3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/schemas/src/session/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const $Session = $BaseModel.extend({
1313
subject: $Subject,
1414
subjectId: z.string(),
1515
type: $SessionType,
16-
userId: z.string().nullable()
16+
userId: z.string().nullish()
1717
});
1818

1919
export type CreateSessionData = z.infer<typeof $CreateSessionData>;

0 commit comments

Comments
 (0)