From f75b9650d006c8e58c9388c8df840841377b2bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veronika=20Feh=C3=A9rv=C3=ADziov=C3=A1?= <128744051+VeronikaFeherviziova@users.noreply.github.com> Date: Sat, 1 Nov 2025 21:05:34 +0100 Subject: [PATCH] refact: remove internship ID property from new internship type --- frontend/app/types/internship_status.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/app/types/internship_status.ts b/frontend/app/types/internship_status.ts index 01ff86d..6567eda 100644 --- a/frontend/app/types/internship_status.ts +++ b/frontend/app/types/internship_status.ts @@ -11,7 +11,6 @@ export interface InternshipStatusData { }; export interface NewInternshipStatusData { - internship_id: number; status: InternshipStatus; note: string; };