diff --git a/src/components/Card.astro b/src/components/Card.astro index 0af2cdd..20ea246 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -3,16 +3,15 @@ import { getMonth, getDaySuffix } from "../utils"; interface Props { post: any, - base: string, } -const { post, base } = Astro.props; +const { post } = Astro.props; const date = new Date(post.data.pubDate); ---