Skip to content

Commit

Permalink
ESLint fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
jdwjdwjdw committed Apr 16, 2024
1 parent 8657efe commit 3372893
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/SidebarNav/SidebarMenuGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const SidebarMenuGroup = ({
<Collapse in={isExpanded} unmountOnExit>
<ul className={styles.childMenu}>
{menuLinks?.map((menuItem) => (
<li className="mb-0" key={'List Item: ' + menuItem.label}>
<li className="mb-0" key={`List Item: ${menuItem.label}`}>
<SidebarMenuLink key={menuItem.label} label={menuItem.label} href={menuItem.href} isSecondLevel />
</li>
))}
Expand Down
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const { withContentlayer } = require('next-contentlayer');
const nextConfig = {
reactStrictMode: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
locales: ['en'],
defaultLocale: 'en',
},
};

Expand Down

0 comments on commit 3372893

Please sign in to comment.