From b245edc54d8670484a795aac8a780af5492f44c3 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Mon, 19 May 2025 12:53:06 +0000 Subject: [PATCH] style: fix linting issues met Prettier --- frontend/src/components/DiscussionsSideBar.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/DiscussionsSideBar.vue b/frontend/src/components/DiscussionsSideBar.vue index cecc9426..a85da52d 100644 --- a/frontend/src/components/DiscussionsSideBar.vue +++ b/frontend/src/components/DiscussionsSideBar.vue @@ -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);