Remove debug stuff

This commit is contained in:
Daniel Egger 2023-05-19 10:02:35 +02:00
parent bcc42eaf83
commit a0593bbacd
1 changed files with 1 additions and 5 deletions

View File

@ -1,7 +1,4 @@
<script setup lang="ts">
import * as log from "loglevel";
import { useCurrentCourseSession } from "@/composables";
import LearningPathAppointmentsMock from "@/pages/learningPath/learningPathPage/LearningPathAppointmentsMock.vue";
import LearningPathListView from "@/pages/learningPath/learningPathPage/LearningPathListView.vue";
import LearningPathPathView from "@/pages/learningPath/learningPathPage/LearningPathPathView.vue";
@ -12,6 +9,7 @@ import LearningPathViewSwitch from "@/pages/learningPath/learningPathPage/Learni
import { useLearningPathStore } from "@/stores/learningPath";
import { useUserStore } from "@/stores/user";
import { breakpointsTailwind, useBreakpoints } from "@vueuse/core";
import * as log from "loglevel";
import { computed, onMounted, ref } from "vue";
const props = defineProps<{
@ -21,7 +19,6 @@ const props = defineProps<{
const breakpoints = useBreakpoints(breakpointsTailwind);
const learningPathStore = useLearningPathStore();
const userStore = useUserStore();
const courseSession = useCurrentCourseSession();
// Layout state
const useMobileLayout = breakpoints.smaller("sm");
@ -82,7 +79,6 @@ const changeViewType = (viewType: ViewType) => {
<p class="font-bold">
{{ $t("learningPathPage.welcomeBack", { name: userStore.first_name }) }}
</p>
<pre>{{ courseSession.title }}</pre>
<h2 data-cy="learning-path-title">
{{ learningPath?.title }}
</h2>