diff --git a/client/src/pages/cockpit/cockpitPage/mentor/MentorPraxisAssignment.vue b/client/src/pages/cockpit/cockpitPage/mentor/MentorPraxisAssignment.vue
index ae5b75c3..12119397 100644
--- a/client/src/pages/cockpit/cockpitPage/mentor/MentorPraxisAssignment.vue
+++ b/client/src/pages/cockpit/cockpitPage/mentor/MentorPraxisAssignment.vue
@@ -1,8 +1,9 @@
@@ -109,7 +110,7 @@ const getParticipantById = (id: string): Participant | null => {
class="underline"
:to="item.url"
>
- {{ $t("a.Bewertung anzeigen") }}
+ {{ $t("a.Bewertung ansehen") }}
diff --git a/client/src/services/mentorCockpit.ts b/client/src/services/mentorCockpit.ts
index 213caa34..0818ae81 100644
--- a/client/src/services/mentorCockpit.ts
+++ b/client/src/services/mentorCockpit.ts
@@ -1,4 +1,4 @@
-import { itGetCached } from "@/fetchHelpers";
+import { itGet } from "@/fetchHelpers";
import type { Ref } from "vue";
import { ref, watchEffect } from "vue";
@@ -74,7 +74,7 @@ export const useMentorCockpit = (
summary.value = null;
error.value = null;
- itGetCached(`/api/mentor/${courseSessionId}/summary`)
+ itGet(`/api/mentor/${courseSessionId}/summary`)
.then((response) => {
summary.value = response;
})
@@ -94,5 +94,6 @@ export const useMentorCockpit = (
error,
getCircleTitleById,
getPraxisAssignmentById,
+ fetchData,
};
};