From b9cd7a756a3976675c788eedaca4e6f4cd8e6cc6 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Sun, 18 May 2025 12:43:24 +0000 Subject: [PATCH] style: fix linting issues met Prettier --- frontend/src/components/QuestionBox.vue | 16 +++++++++++----- frontend/src/components/SingleQuestion.vue | 18 ++++++++++-------- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/frontend/src/components/QuestionBox.vue b/frontend/src/components/QuestionBox.vue index 8072df16..69668bed 100644 --- a/frontend/src/components/QuestionBox.vue +++ b/frontend/src/components/QuestionBox.vue @@ -66,7 +66,9 @@ const createQuestionMutation = useCreateQuestionMutation(loID); const groupsQueryResult = useStudentGroupsQuery(authService.authState.user?.profile.preferred_username); - const showQuestionBox = computed(() => authService.authState.activeRole === AccountType.Student && pathIsAssignment.value); + const showQuestionBox = computed( + () => authService.authState.activeRole === AccountType.Student && pathIsAssignment.value, + ); function submitQuestion(): void { const assignments = studentAssignmentsQueryResult.data.value?.assignments as AssignmentDTO[]; @@ -96,8 +98,11 @@