Remove debug stuff
This commit is contained in:
parent
bcc42eaf83
commit
a0593bbacd
|
|
@ -1,7 +1,4 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import * as log from "loglevel";
|
|
||||||
|
|
||||||
import { useCurrentCourseSession } from "@/composables";
|
|
||||||
import LearningPathAppointmentsMock from "@/pages/learningPath/learningPathPage/LearningPathAppointmentsMock.vue";
|
import LearningPathAppointmentsMock from "@/pages/learningPath/learningPathPage/LearningPathAppointmentsMock.vue";
|
||||||
import LearningPathListView from "@/pages/learningPath/learningPathPage/LearningPathListView.vue";
|
import LearningPathListView from "@/pages/learningPath/learningPathPage/LearningPathListView.vue";
|
||||||
import LearningPathPathView from "@/pages/learningPath/learningPathPage/LearningPathPathView.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 { useLearningPathStore } from "@/stores/learningPath";
|
||||||
import { useUserStore } from "@/stores/user";
|
import { useUserStore } from "@/stores/user";
|
||||||
import { breakpointsTailwind, useBreakpoints } from "@vueuse/core";
|
import { breakpointsTailwind, useBreakpoints } from "@vueuse/core";
|
||||||
|
import * as log from "loglevel";
|
||||||
import { computed, onMounted, ref } from "vue";
|
import { computed, onMounted, ref } from "vue";
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
|
|
@ -21,7 +19,6 @@ const props = defineProps<{
|
||||||
const breakpoints = useBreakpoints(breakpointsTailwind);
|
const breakpoints = useBreakpoints(breakpointsTailwind);
|
||||||
const learningPathStore = useLearningPathStore();
|
const learningPathStore = useLearningPathStore();
|
||||||
const userStore = useUserStore();
|
const userStore = useUserStore();
|
||||||
const courseSession = useCurrentCourseSession();
|
|
||||||
|
|
||||||
// Layout state
|
// Layout state
|
||||||
const useMobileLayout = breakpoints.smaller("sm");
|
const useMobileLayout = breakpoints.smaller("sm");
|
||||||
|
|
@ -82,7 +79,6 @@ const changeViewType = (viewType: ViewType) => {
|
||||||
<p class="font-bold">
|
<p class="font-bold">
|
||||||
{{ $t("learningPathPage.welcomeBack", { name: userStore.first_name }) }}
|
{{ $t("learningPathPage.welcomeBack", { name: userStore.first_name }) }}
|
||||||
</p>
|
</p>
|
||||||
<pre>{{ courseSession.title }}</pre>
|
|
||||||
<h2 data-cy="learning-path-title">
|
<h2 data-cy="learning-path-title">
|
||||||
{{ learningPath?.title }}
|
{{ learningPath?.title }}
|
||||||
</h2>
|
</h2>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue