Add isRequired flag to MobileSyncPage props (#7544)

feature/default_network_editable
Whymarrh Whitby 5 years ago committed by GitHub
parent ec938686a9
commit 50c5365933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      ui/app/pages/mobile-sync/mobile-sync.component.js

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

Loading…
Cancel
Save