Skip to content

Commit

Permalink
[HUM-39] fix according to review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
KacperKoza343 committed Oct 25, 2024
1 parent 9726053 commit 9c15b2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ export function DrawerNavigation({
<Stack
alignItems="flex-start"
sx={{ paddingLeft: '60px', cursor: 'pointer' }}
onClick={handleMainNavIconClick}
onClick={() => {
handleMainNavIconClick();
}}
>
<HumanLogoNavbarIcon />
</Stack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export function AvailableJobsDrawerMobile({
sx={{ cursor: 'pointer' }}
onClick={() => {
handleMainNavIconClick();
// setIsMobileFilterDrawerOpen(false);
}}
>
<HumanLogoIcon />
Expand Down

0 comments on commit 9c15b2c

Please sign in to comment.