mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix malformed PropType declaraton (#9876)
`PropTypes.function` was used accidentally instead of `PropType.func`
This commit is contained in:
parent
a75949e62c
commit
7830b85bf1
@ -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…
Reference in New Issue
Block a user