Do not require onClose property in NavigationBar (#5802)
NavigationBar can be used as mock as it is in OnboardingModal. In such a case, onClose property is not required.
This commit is contained in:
parent
efc97d404c
commit
0319b92979
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ export default class NavigationBar extends ImmutablePureComponent {
|
|||
|
||||
static propTypes = {
|
||||
account: ImmutablePropTypes.map.isRequired,
|
||||
onClose: PropTypes.func.isRequired,
|
||||
onClose: PropTypes.func,
|
||||
};
|
||||
|
||||
render () {
|
||||
|
|
Loading…
Reference in a new issue