Merge remote-tracking branch 'origin/feat/assignment-page' into feat/assignment-page

This commit is contained in:
Joyelle Ndagijimana 2025-04-21 21:31:35 +02:00
commit f7e20d5fe4
3 changed files with 2 additions and 4 deletions

View file

@ -71,7 +71,6 @@
} }
}); });
async function submitFormHandler(): Promise<void> { async function submitFormHandler(): Promise<void> {
const { valid } = await form.value.validate(); const { valid } = await form.value.validate();
if (!valid) return; if (!valid) return;

View file

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import {computed, type Ref, ref, watch} from "vue"; import { computed, type Ref, ref, watch } from "vue";
import { useI18n } from "vue-i18n"; import { useI18n } from "vue-i18n";
import { useAssignmentQuery, useDeleteAssignmentMutation } from "@/queries/assignments.ts"; import { useAssignmentQuery, useDeleteAssignmentMutation } from "@/queries/assignments.ts";
import UsingQueryResult from "@/components/UsingQueryResult.vue"; import UsingQueryResult from "@/components/UsingQueryResult.vue";

View file

@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import {ref, computed, onMounted, watch} from "vue"; import { ref, computed, onMounted, watch } from "vue";
import { useI18n } from "vue-i18n"; import { useI18n } from "vue-i18n";
import { useRouter } from "vue-router"; import { useRouter } from "vue-router";
import auth from "@/services/auth/auth-service.ts"; import auth from "@/services/auth/auth-service.ts";
@ -72,7 +72,6 @@ import {ref, computed, onMounted, watch} from "vue";
cid: clsId, cid: clsId,
an: num, an: num,
}); });
} }
onMounted(async () => { onMounted(async () => {