Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
attefUp committed Jul 18, 2023
1 parent 16abefe commit e613e6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Display/Menu/UpMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class UpMenu extends React.Component<UpMenuProps & WithThemeProps, UpMenuState>

const upMenuNavClassName = classes('up-menu-nav', this.currentMinifiedValue ? 'minified' : '');

const showToggler = !this.props.blocked && isMobileDevice() || this.props.showToggler;
const showToggler = (!this.props.blocked && isMobileDevice()) || this.props.showToggler;

return (
<aside
Expand Down

0 comments on commit e613e6c

Please sign in to comment.