From d2793937a9d6f52924d52ee09298da3011b4d63b Mon Sep 17 00:00:00 2001 From: Niko Date: Wed, 21 May 2025 17:54:50 +0200 Subject: [PATCH] Clean up astro check warnings. --- astro.config.mjs | 2 -- src/components/Modal.astro | 17 ++++++++++------- src/components/SocialMediaSponsorCard.astro | 2 -- src/components/schedule/session.astro | 1 - src/components/sponsors/sponsors.astro | 1 - src/pages/media/sponsor/[slug].astro | 2 +- 6 files changed, 11 insertions(+), 14 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 159759957..f32f38e49 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -12,8 +12,6 @@ import deleteUnusedImages from "astro-delete-unused-images"; import preload from "astro-preload"; import { execSync } from "node:child_process"; -import compress from "astro-compress"; - let gitVersion = String(process.env.GIT_VERSION ?? "").slice(0, 7); if (!gitVersion) { diff --git a/src/components/Modal.astro b/src/components/Modal.astro index 09ae15f04..63b63329a 100644 --- a/src/components/Modal.astro +++ b/src/components/Modal.astro @@ -29,7 +29,7 @@ const { id = 'modal', open = false, closeOnOutsideClick = false } = Astro.props;