Skip to content

Commit

Permalink
Change IDs in app to course IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ascent817 committed Nov 15, 2023
1 parent 49024e5 commit 4c0fd9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const initializeCourseViewer = (): void => {
key={name}
authLevel={authLevel}
course={courseData[name]}
jumpId={name}
jumpId={courseData[name].courseid}
/>
));

Expand Down Expand Up @@ -222,7 +222,7 @@ export const filterCourses = (): void => {
key={name}
authLevel={authLevel}
course={courseData[name]}
jumpId={name}
jumpId={courseData[name].courseid}
/>
);
});
Expand Down

0 comments on commit 4c0fd9c

Please sign in to comment.