Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
style: lint, format
Browse files Browse the repository at this point in the history
  • Loading branch information
saeidex committed Sep 27, 2024
1 parent 06df0fc commit 41905f3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
3 changes: 2 additions & 1 deletion apps/nextjs/src/app/_components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export const Footer = () => {
</div>
<div className="grid gap-9 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4">
{footerMenuItems.map((item) => (
<FooterMenu menu={item} />
<FooterMenu menu={item} key={item.title} />
))}
</div>
<Separator />
Expand All @@ -128,6 +128,7 @@ const FooterMenu = ({ menu }: { menu: IMenuItem }) => {
<Link
className="text-headline-large hover:underline"
href={{ href: link.href }}
key={link.href}
>
{link.label}
</Link>
Expand Down
9 changes: 2 additions & 7 deletions packages/configs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
{
"compilerOptions": {},
"exclude": [
"node_modules"
],
"exclude": ["node_modules"],
"extends": "@ubus/tsconfig/internal-package.json",
"include": [
"*.ts",
"src"
]
"include": ["*.ts", "src"]
}
21 changes: 20 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 41905f3

Please sign in to comment.