From 1d6c3f377ec8f00016d4d0d3894ebc7e22a6a0cd Mon Sep 17 00:00:00 2001 From: Veloi <85405932+veloii@users.noreply.github.com> Date: Sat, 23 Sep 2023 17:20:36 +0100 Subject: [PATCH] fix: type def ActivityPoint note is now nullable --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 16ea0e6..0b5add5 100644 --- a/src/types.ts +++ b/src/types.ts @@ -126,7 +126,7 @@ export interface ActivityPoint { lesson_name: string | null; teacher_name: string; room_name: string | null; - note: string; + note: string | null; _can_delete: boolean; badges: string | undefined; detention_date: string | null;