From 3d9120c5700244137427b929c360920e7227ad6d Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 16 Feb 2026 22:34:14 -0600 Subject: [PATCH] fix: remove unused property --- src/components/buttons/GiteaButton.astro | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/buttons/GiteaButton.astro b/src/components/buttons/GiteaButton.astro index a5a730e..0207cce 100644 --- a/src/components/buttons/GiteaButton.astro +++ b/src/components/buttons/GiteaButton.astro @@ -2,11 +2,10 @@ import { Icon } from 'astro-icon/components'; interface Props { - title?: string; url?: string; } -const { title, url } = Astro.props; +const { url } = Astro.props; ---