1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Fix malformed PropType declaraton (#9876)

`PropTypes.function` was used accidentally instead of `PropType.func`
This commit is contained in:
Mark Stacey 2020-11-13 14:52:58 -03:30
parent a215afcd18
commit 45f0c436c1

View File

@ -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,