Skip to content

Commit df645f2

Browse files
committed
fix: by fetching course info again
1 parent 33b5897 commit df645f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/course-outline/hooks.jsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,9 @@ const useCourseOutline = ({ courseId }) => {
187187
dispatch(configureCourseSectionQuery(currentSection.id, ...arg));
188188
break;
189189
case COURSE_BLOCK_NAMES.sequential.id:
190-
dispatch(configureCourseSubsectionQuery(currentItem.id, currentSection.id, ...arg));
190+
dispatch(configureCourseSubsectionQuery(currentItem.id, currentSection.id, ...arg)).then(() => {
191+
dispatch(fetchCourseOutlineIndexQuery(courseId));
192+
});
191193
break;
192194
case COURSE_BLOCK_NAMES.vertical.id:
193195
dispatch(configureCourseUnitQuery(currentItem.id, currentSection.id, ...arg));

0 commit comments

Comments
 (0)