Fix broken redirect

This commit is contained in:
Kristin Aoki
2021-07-30 16:24:52 -04:00
parent f2d7e119a5
commit 7b45c8b6fa

View File

@@ -40,7 +40,7 @@ function CourseExit({ intl }) {
} else if (mode === COURSE_EXIT_MODES.celebration) {
body = (<CourseCelebration />);
} else {
return (<Redirect to={`/course/${courseId}`} />);
return (<Redirect to={`/c/${courseId}`} />);
}
return (