Fix import

This commit is contained in:
Ramon Wenger 2022-12-29 16:46:49 +01:00
parent 3aa5e52e20
commit 4a3eb72416
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import { computed, onMounted, reactive, ref } from "vue";
import { useAppStore } from "@/stores/app";
import { useCircleStore } from "@/stores/circle";
import { useCourseSessionsStore } from "@/stores/courseSessions";
import { useSetupCourseSessionsStore } from "@/stores/courseSessions";
import type { CourseSessionUser } from "@/types";
import { humanizeDuration } from "@/utils/humanizeDuration";
import _ from "lodash";
@ -18,7 +18,7 @@ import { useRoute } from "vue-router";
const route = useRoute();
const { t } = useI18n();
const courseSessionsStore = useCourseSessionsStore();
const courseSessionsStore = useSetupCourseSessionsStore();
interface Props {
courseSlug: string;