Skip to content

Commit

Permalink
fix error, warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
flo-bit committed Dec 12, 2024
1 parent b1fe876 commit 27ce1fb
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/components/Tag.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
import { cn } from "src/utils";
import { BASE } from "../config.json";
const { tag } = Astro.props;
---
Expand Down
2 changes: 1 addition & 1 deletion src/embeds/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

import LinkCard from './link-card/LinkCard.astro';
import YouTube from './youtube/Youtube.astro';
import YouTube from './youtube/YouTube.astro';

export { LinkCard, YouTube };
3 changes: 1 addition & 2 deletions src/layouts/PostList.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
import { SITE_TITLE, SITE_DESCRIPTION, BASE } from "../config.json";
import { SITE_TITLE, SITE_DESCRIPTION } from "../config.json";
import Footer from "$components/Footer.astro";
import Header from "$components/Header.astro";
Expand All @@ -8,7 +8,6 @@ import BlogEntry from "$components/BlogEntry.astro";
import Pagination from "$components/Pagination.astro";
import ProseWrapper from "./ProseWrapper.astro";
import HeroImage from "$components/HeroImage.astro";
import BigBlogEntry from "$components/BigBlogEntry.astro";
type Props = {
Expand Down
2 changes: 0 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
import { POSTS_PER_PAGE } from "../config.json";
import { Content } from "$content/info/description.md";
import { getBlogPosts } from "src/utils";
import PostList from "$layouts/PostList.astro";
Expand Down
1 change: 0 additions & 1 deletion src/pages/posts/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import Header from "$components/Header.astro";
import Footer from "$components/Footer.astro";
import { Image } from "astro:assets";
import FormattedDate from "$components/FormattedDate.astro";
import { BASE } from "../../config.json";
import { getBlogPosts } from "src/utils";
import BlueskyLikes from "$components/bluesky/BlueskyLikes.astro";
import Tag from "$components/Tag.astro";
Expand Down

0 comments on commit 27ce1fb

Please sign in to comment.