Revert "Hide burger menu on Login Page"

This reverts commit fdd2df9265.
This commit is contained in:
Vladislav Makhov 2020-06-30 14:35:13 +03:00
parent fdd2df9265
commit f7799d3bdb
2 changed files with 2 additions and 3 deletions

View File

@ -181,7 +181,7 @@ class Layout extends React.Component {
onClick={this.showNav}
onLogoClick={this.state.onLogoClick}
currentModule={this.state.currentModule}
user={this.state.currentUser}
currentUser={this.props.currentUser}
/>
)}
{this.state.isNavAvailable && (

View File

@ -89,8 +89,7 @@ HeaderComponent.propTypes = {
badgeNumber: PropTypes.number,
onClick: PropTypes.func,
onLogoClick: PropTypes.func,
currentModule: PropTypes.object,
currentUser: PropTypes.object
currentModule: PropTypes.object
};
export default HeaderComponent;