Fix malformed PropType declaraton (#9876)

`PropTypes.function` was used accidentally instead of `PropType.func`
feature/default_network_editable
Mark Stacey 4 years ago committed by GitHub
parent a75949e62c
commit 7830b85bf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui/app/pages/first-time-flow/end-of-flow/end-of-flow.component.js

@ -15,7 +15,7 @@ export default class EndOfFlowScreen extends PureComponent {
static propTypes = {
history: PropTypes.object,
completionMetaMetricsName: PropTypes.string,
setCompletedOnboarding: PropTypes.function,
setCompletedOnboarding: PropTypes.func,
onboardingInitiator: PropTypes.exact({
location: PropTypes.string,
tabId: PropTypes.number,

Loading…
Cancel
Save