Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisjofrank committed Nov 4, 2024
1 parent 4e1dfc5 commit 376b37a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions components.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/// <reference lib="dom.asynciterable" />
/// <reference lib="deno.ns" />

import { Fragment, gfm, h } from "./deps.ts";
import { gfm, h } from "./deps.ts";
import type { BlogState, DateFormat, Post } from "./types.d.ts";

const socialAppIcons = new Map([
Expand Down Expand Up @@ -124,10 +124,9 @@ export function Index({ state, posts }: IndexProps) {
}

function PostCard(
{ post, dateFormat, lang }: {
{ post, dateFormat }: {
post: Post;
dateFormat?: DateFormat;
lang?: string;
},
) {
return (
Expand Down Expand Up @@ -232,7 +231,7 @@ export function PostPage({ post, state }: PostPageProps) {
);
}

function Footer(props: { author?: string }) {
function Footer() {
return (
<footer class="mt-20 pb-16 lt-sm:pb-8 lt-sm:mt-16">
<p class="flex items-center gap-2.5 text-gray-400/800 dark:text-gray-500/800 text-sm">
Expand Down

0 comments on commit 376b37a

Please sign in to comment.