Skip to content

Commit

Permalink
Automated code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Loculus bot committed Aug 20, 2024
1 parent 1a9e49a commit a46b641
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions website/src/components/Navigation/DocsMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ interface DocsMenuProps {
title: string;
}

const groupPagesByDirectory = (pages: Page[]): { groupedPages: Record<string, Page[]>, indexPages: Record<string, Page> } => {
const groupPagesByDirectory = (
pages: Page[],
): { groupedPages: Record<string, Page[]>; indexPages: Record<string, Page> } => {
const groupedPages: Record<string, Page[]> = {};
const indexPages: Record<string, Page> = {};

Expand Down Expand Up @@ -149,4 +151,4 @@ const DocsMenu: React.FC<DocsMenuProps> = ({ docsPages, currentPageUrl, title })
);
};

export default DocsMenu;
export default DocsMenu;

0 comments on commit a46b641

Please sign in to comment.