Skip to content

Commit

Permalink
style: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
steff456 committed Dec 6, 2023
1 parent c0e7d6d commit 3e0d85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/course-outline/section-card/SectionCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ SectionCard.defaultProps = {
SectionCard.propTypes = {
section: PropTypes.shape({
id: PropTypes.string.isRequired,
index: PropTypes.number.isRequired,
displayName: PropTypes.string.isRequired,
published: PropTypes.bool.isRequired,
hasChanges: PropTypes.bool.isRequired,
Expand All @@ -215,6 +214,7 @@ SectionCard.propTypes = {
staffOnlyMessage: PropTypes.bool.isRequired,
highlights: PropTypes.arrayOf(PropTypes.string).isRequired,
}).isRequired,
index: PropTypes.number.isRequired,
children: PropTypes.node,
onOpenHighlightsModal: PropTypes.func.isRequired,
onOpenPublishModal: PropTypes.func.isRequired,
Expand Down

0 comments on commit 3e0d85f

Please sign in to comment.