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; ---