diff --git a/site/src/components/sections/EcosystemSection.astro b/site/src/components/sections/EcosystemSection.astro index bc398b775a..06bf5fbf61 100644 --- a/site/src/components/sections/EcosystemSection.astro +++ b/site/src/components/sections/EcosystemSection.astro @@ -70,7 +70,7 @@ interface ItemData { url: string logo: any cover: any - category: Category[] + category: Array } const data: Array = [ diff --git a/site/src/lib/types.ts b/site/src/lib/types.ts index ac58aaf3b3..68d4747aaa 100644 --- a/site/src/lib/types.ts +++ b/site/src/lib/types.ts @@ -1,5 +1,5 @@ import type { EntryFieldTypes } from "contentful" -import { type ImageMetadata } from "astro" +import type { ImageMetadata } from "astro" export type MaybePromise = T | Promise diff --git a/site/src/pages/team.astro b/site/src/pages/team.astro index b11512882e..028f3259f0 100644 --- a/site/src/pages/team.astro +++ b/site/src/pages/team.astro @@ -4,7 +4,6 @@ import Card from "#/components/Card.astro" import H1 from "#/components/typography/h1.astro" import Subtitle from "#/components//typography/subtitle.astro" import TopSection from "../components/sections/TopSection.astro" -import { type ImageMetadata } from "astro" import headshot_karel from "#/assets/images/headshots/karel.jpg" import headshot_cor from "#/assets/images/headshots/cor.jpg"