Skip to content

Commit

Permalink
chore: update prop types on tutorial step
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Oct 14, 2020
1 parent 71992f2 commit 13df919
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/TutorialStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import Markdown from './Markdown';
const TutorialStep = ({
children,
codeBlock,
initialSelectedFile,
step,
index,
title,
Expand Down Expand Up @@ -59,8 +58,8 @@ const TutorialStep = ({

TutorialStep.propTypes = {
children: PropTypes.node,
codeBlock: PropTypes.object.isRequired,
index: PropTypes.number.isRequired,
initialSelectedFile: PropTypes.string.isRequired,
step: PropTypes.instanceOf(Map).isRequired,
title: PropTypes.oneOfType([PropTypes.string, PropTypes.node]),
totalSteps: PropTypes.number.isRequired,
Expand Down

0 comments on commit 13df919

Please sign in to comment.