From 040952bb86394e5a43fba366165088189bc7669f Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Wed, 18 Sep 2024 12:33:07 -0400 Subject: [PATCH] chore: small astro check fixes --- src/components/SpeakerSmall.astro | 2 +- src/pages/sessions.astro | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/SpeakerSmall.astro b/src/components/SpeakerSmall.astro index c69a0e8..3b384bf 100644 --- a/src/components/SpeakerSmall.astro +++ b/src/components/SpeakerSmall.astro @@ -4,7 +4,7 @@ import { type Person } from "~/data/notion-data"; import SafeMarkdown from "./SafeMarkdown.astro"; import SpeakerImage from "./SpeakerImage.astro"; -interface Props { +export interface Props { as: "div" | "li"; class?: string; href?: string; diff --git a/src/pages/sessions.astro b/src/pages/sessions.astro index f967ac0..20e953b 100644 --- a/src/pages/sessions.astro +++ b/src/pages/sessions.astro @@ -2,7 +2,6 @@ import BodyText from "~/components/BodyText.astro"; import HeadingFlanked from "~/components/HeadingFlanked.astro"; import HeroForPage from "~/components/HeroForPage.astro"; -import PrimaryContents from "~/components/PrimaryContents.astro"; import Session from "~/components/Session.astro"; import { talks } from "~/data/talks"; import ContentLayout from "~/layouts/ContentLayout.astro";