diff --git a/backend/src/controllers/learning-objects.ts b/backend/src/controllers/learning-objects.ts index dc1c2c14..b872ee74 100644 --- a/backend/src/controllers/learning-objects.ts +++ b/backend/src/controllers/learning-objects.ts @@ -49,7 +49,7 @@ export async function getLearningObject(req: Request, res: Response): Promise import ThemeCard from "@/components/ThemeCard.vue"; - import {ref, watchEffect, computed, type Ref} from "vue"; + import { ref, watchEffect, computed, type Ref } from "vue"; import { useI18n } from "vue-i18n"; import { AGE_TO_THEMES, THEMESITEMS } from "@/utils/constants.ts"; import { useThemeQuery } from "@/queries/themes.ts"; - import type {Theme} from "@/data-objects/theme.ts"; + import type { Theme } from "@/data-objects/theme.ts"; const props = defineProps({ selectedTheme: { type: String, required: true }, @@ -17,7 +17,7 @@ const { data: allThemes, isLoading, error } = useThemeQuery(language); const allCards: Ref = ref([]); - const cards: Ref = ref([]); + const cards: Ref = ref([]); watchEffect(() => { const themes: Theme[] = allThemes.value ?? []; diff --git a/frontend/src/components/LearningPathSearchField.vue b/frontend/src/components/LearningPathSearchField.vue index 2d89c192..b8b71960 100644 --- a/frontend/src/components/LearningPathSearchField.vue +++ b/frontend/src/components/LearningPathSearchField.vue @@ -1,7 +1,7 @@