From 56e992f67cb5948511be078c2eb4ae68d3585552 Mon Sep 17 00:00:00 2001 From: Gabriellvl Date: Mon, 12 May 2025 23:16:52 +0200 Subject: [PATCH] fix: lint --- frontend/src/queries/teachers.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/frontend/src/queries/teachers.ts b/frontend/src/queries/teachers.ts index fe2794cb..ed13f630 100644 --- a/frontend/src/queries/teachers.ts +++ b/frontend/src/queries/teachers.ts @@ -32,10 +32,6 @@ function teacherStudentsQueryKey(username: string, full: boolean): [string, stri return ["teacher-students", username, full]; } -function teacherQuestionsQueryKey(username: string, full: boolean): [string, string, boolean] { - return ["teacher-questions", username, full]; -} - export function teacherClassJoinRequests(classId: string): [string, string] { return ["teacher-class-join-requests", classId]; }