Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update NPM Dependencies #405

Merged
merged 5 commits into from Jul 2, 2019
Merged
Changes from 1 commit
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

fix proptype errors in hub

  • Loading branch information
christophertino committed Jul 1, 2019
commit eaa2a1a00b6e09d4d668b3d941ee53aeaf96ae5f
@@ -61,7 +61,7 @@ SetupView.propTypes = {
steps: PropTypes.arrayOf(PropTypes.shape({
index: PropTypes.number.isRequired,
path: PropTypes.string.isRequired,
bodyComponent: PropTypes.func.isRequired,
bodyComponent: PropTypes.shape.isRequired,
headerProps: PropTypes.shape({
title: PropTypes.string.isRequired,
titleImage: PropTypes.string.isRequired,
@@ -48,7 +48,7 @@ TutorialView.propTypes = {
steps: PropTypes.arrayOf(PropTypes.shape({
index: PropTypes.number.isRequired,
path: PropTypes.string.isRequired,
bodyComponent: PropTypes.func.isRequired,
bodyComponent: PropTypes.shape.isRequired,
})).isRequired,
sendMountActions: PropTypes.bool.isRequired,
};
ProTip! Use n and p to navigate between commits in a pull request.