Skip to content

Commit

Permalink
fix: eslint quality
Browse files Browse the repository at this point in the history
  • Loading branch information
AfaqShuaib09 committed Oct 30, 2024
1 parent 7b99f54 commit d68d621
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/EditCoursePage/CollapsibleCourseRun.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,9 @@ class CollapsibleCourseRun extends React.Component {
const courseType = courseInfo?.data?.course_type;

if (IN_REVIEW_STATUS.includes(courseRun.status) !== isCourseRunInReview) {
setTimeout(() => {
this.setState({ isCourseRunInReview: IN_REVIEW_STATUS.includes(courseRun.status) });
}, 100);
setTimeout(() => {
this.setState({ isCourseRunInReview: IN_REVIEW_STATUS.includes(courseRun.status) });

Check failure on line 284 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (18)

Expected indentation of 8 spaces but found 9

Check failure on line 284 in src/components/EditCoursePage/CollapsibleCourseRun.jsx

View workflow job for this annotation

GitHub Actions / tests (20)

Expected indentation of 8 spaces but found 9
}, 100);
}

return (
Expand Down

0 comments on commit d68d621

Please sign in to comment.