diff --git a/client/src/components/FeedbackForm.vue b/client/src/components/FeedbackForm.vue
index db722028..db983244 100644
--- a/client/src/components/FeedbackForm.vue
+++ b/client/src/components/FeedbackForm.vue
@@ -3,7 +3,11 @@
+
+
+ :show-back-button="stepNo > 0"
+ :show-next-button="stepNo > 0 && stepNo < MAX_STEPS - 1"
+ :question-index="stepNo"
+ :max-question-index="MAX_STEPS"
+ @back="previousStep"
+ @continue="nextStep"
+ >
satisfaction {{ satisfaction }}
@@ -112,14 +129,15 @@ import {
RATINGS,
YES_NO,
} from "@/components/learningPath/feedback.constants";
-import ItRadioGroup from "@/components/ui/ItRadioGroup.vue";
-import ItTextarea from "@/components/ui/ItTextarea.vue";
+import FeedbackCompletition from "@/components/learningPath/FeedbackCompletition.vue";
import FeedbackIntro from "@/components/learningPath/FeedbackIntro.vue";
import LearningContentNavigation from "@/components/learningPath/LearningContentNavigation.vue";
+import ItRadioGroup from "@/components/ui/ItRadioGroup.vue";
+import ItTextarea from "@/components/ui/ItTextarea.vue";
import { graphql } from "@/gql/";
import type { SendFeedbackInput } from "@/gql/graphql";
-import { useCourseSessionsStore } from "@/stores/courseSessions";
import { useCircleStore } from "@/stores/circle";
+import { useCourseSessionsStore } from "@/stores/courseSessions";
import type { LearningContent } from "@/types";
import { useMutation } from "@urql/vue";
import log from "loglevel";
@@ -134,7 +152,7 @@ onMounted(async () => {
});
const stepNo = ref(0);
-const MAX_STEPS = 10;
+const MAX_STEPS = 12;
const sendFeedbackMutation = graphql(`
mutation SendFeedbackMutation($input: SendFeedbackInput!) {
diff --git a/client/src/components/MobileMenu.vue b/client/src/components/MobileMenu.vue
index 5ae62fcc..f21503f8 100644
--- a/client/src/components/MobileMenu.vue
+++ b/client/src/components/MobileMenu.vue
@@ -80,6 +80,7 @@ const clickLink = (to: string | undefined) => {