fix: linter

This commit is contained in:
Joyelle Ndagijimana 2025-04-22 09:09:47 +02:00
parent e3ca01a730
commit bf41ec2aac
2 changed files with 2 additions and 3 deletions

View file

@ -1,12 +1,11 @@
<script setup lang="ts">
import { computed, type Ref, ref, watch } from "vue";
import { computed, type Ref, ref } from "vue";
import { useI18n } from "vue-i18n";
import { useAssignmentQuery, useDeleteAssignmentMutation } from "@/queries/assignments.ts";
import UsingQueryResult from "@/components/UsingQueryResult.vue";
import { useGroupsQuery } from "@/queries/groups.ts";
import { useGetLearningPathQuery } from "@/queries/learning-paths.ts";
import type { Language } from "@/data-objects/language.ts";
import router from "@/router";
import type { AssignmentResponse } from "@/controllers/assignments.ts";
import type { GroupDTO } from "@dwengo-1/common/interfaces/group";

View file

@ -46,7 +46,7 @@
language: a.language,
groups: a.groups,
}));
}),
})
);
return result.flat();