1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Add isRequired flag to MobileSyncPage props (#7544)

This commit is contained in:
Whymarrh Whitby 2019-11-24 14:46:57 -03:30 committed by GitHub
parent ec938686a9
commit 50c5365933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,11 +20,11 @@ export default class MobileSyncPage extends Component {
}
static propTypes = {
history: PropTypes.object,
selectedAddress: PropTypes.string,
displayWarning: PropTypes.func,
fetchInfoToSync: PropTypes.func,
requestRevealSeedWords: PropTypes.func,
history: PropTypes.object.isRequired,
selectedAddress: PropTypes.string.isRequired,
displayWarning: PropTypes.func.isRequired,
fetchInfoToSync: PropTypes.func.isRequired,
requestRevealSeedWords: PropTypes.func.isRequired,
}