Fix misplace semicolon

This commit is contained in:
Kristin Aoki
2021-08-12 09:50:51 -04:00
parent 38db0ebfe1
commit 847cdfa0bd

View File

@@ -28,7 +28,7 @@ export default () => {
<PageRoute
path={`${path}/:courseId/:sequenceId/:unitId`}
render={({ match }) => {
global.location.assign(`/c/${match.params.courseId}/${match.params.sequenceId}/${match.params.unitId}`)
global.location.assign(`/c/${match.params.courseId}/${match.params.sequenceId}/${match.params.unitId}`);
}}
/>
<PageRoute