@@ -340,11 +332,10 @@ export const Exercise = () => {
+
+
+
+
+
diff --git a/src/shared/consts/router.ts b/src/shared/consts/router.ts
index 7aeb765..dc53b5e 100644
--- a/src/shared/consts/router.ts
+++ b/src/shared/consts/router.ts
@@ -5,6 +5,6 @@ export const getRouteForgotPassword = () => `/forgot-password`
export const getRouteCourses = () => `/courses`
export const getRouteCourseExercises = (id: number | string) => `/course/${id}`
export const getRouteExercise = (courseId: number | string, exerciseId: number | string) =>
- `/course/${courseId}/exercise/${exerciseId}`
+ `/course/${courseId}/${exerciseId}`
export const getRouteSettings = () => `/settings`
export const getRouteCourseComplete = () => `/course-complete`