From ac3154e3342f24b36455064a2c1c05f02d1a48ae Mon Sep 17 00:00:00 2001 From: MotorTruck1221 Date: Wed, 2 Oct 2024 18:45:18 -0600 Subject: [PATCH] why tf did I make this optional??? --- src/components/settings/SettingsCard.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/settings/SettingsCard.astro b/src/components/settings/SettingsCard.astro index a2f31c1..f918c57 100644 --- a/src/components/settings/SettingsCard.astro +++ b/src/components/settings/SettingsCard.astro @@ -11,7 +11,7 @@ interface SelectOptions { } interface Selects { select: boolean; - name?: string; + name: string; multiple?: boolean; options?: SelectOptions[]; }