style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-05-19 12:53:06 +00:00
parent a67315e05d
commit b245edc54d

View file

@ -4,7 +4,7 @@
import DiscussionSideBarElement from "@/components/DiscussionSideBarElement.vue";
import { useI18n } from "vue-i18n";
import { useGetAllLearningPaths } from "@/queries/learning-paths.ts";
import { ref, watch } from 'vue';
import { ref, watch } from "vue";
const { t, locale } = useI18n();
@ -13,7 +13,7 @@
watch(locale, (newLocale) => {
currentLocale.value = newLocale;
})
});
const allLearningPathsResult = useGetAllLearningPaths(() => currentLocale.value);
</script>