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);