diff --git a/client/src/pages/learningPath/CirclePage.vue b/client/src/pages/learningPath/CirclePage.vue index f99ad302..7c13f520 100644 --- a/client/src/pages/learningPath/CirclePage.vue +++ b/client/src/pages/learningPath/CirclePage.vue @@ -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;