Skip to content

Commit

Permalink
fix(lint): parsing error and no-unused-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
at-wr committed Aug 28, 2024
1 parent 5ae7ba1 commit 783ee26
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
import Container from "@components/Container.astro";
import { SITE } from "@consts";
import BackToTop from "@components/BackToTop.astro";
---

Expand Down
1 change: 0 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { SITE } from "@consts";
<Link href="https://github.com/Computerization" aria-label="Computerization on GitHub" external>
GitHub
</Link>
</Link>
</nav>
</div>
</Container>
Expand Down
2 changes: 1 addition & 1 deletion src/consts.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Site, Metadata, Socials } from "@types";
import type { Site, Metadata } from "@types";

export const SITE: Site = {
NAME: "c13n",
Expand Down
1 change: 0 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import Container from "@components/Container.astro";
import PageLayout from "@layouts/PageLayout.astro";
import ArrowCard from "@components/ArrowCard.astro";
import Link from "@components/Link.astro";
import { dateRange } from "@lib/utils";
import { SITE, HOME } from "@consts";
const blog = (await getCollection("blog"))
Expand Down

0 comments on commit 783ee26

Please sign in to comment.