Skip to content

Commit

Permalink
#128 : fix format lint
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermau committed Jan 17, 2025
1 parent 2a550a0 commit 9a7550c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions web/src/ui/shared/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,12 @@ export const Header = memo(
});
}

const quickAccess: Array<JSX.Element | HeaderProps.QuickAccessItem> = [<LanguageSelect />];
config.header.icons.forEach(icon => quickAccess.push(icon as HeaderProps.QuickAccessItem));
const quickAccess: Array<JSX.Element | HeaderProps.QuickAccessItem> = [
<LanguageSelect />
];
config.header.icons.forEach(icon =>
quickAccess.push(icon as HeaderProps.QuickAccessItem)
);
quickAccess.push(
<AuthButtons
isOnPageMyAccount={routeName === "account"}
Expand Down

0 comments on commit 9a7550c

Please sign in to comment.