From 77d2951444c42262dace1266a69a855a66e8b5cb Mon Sep 17 00:00:00 2001 From: Jonathan Carle Date: Fri, 17 Jan 2025 09:01:04 +0100 Subject: [PATCH] fix typing issue --- .../src/components/examples/FormExample/FormExample.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/sit-onyx/src/components/examples/FormExample/FormExample.vue b/packages/sit-onyx/src/components/examples/FormExample/FormExample.vue index ab7a4bed8..560f51981 100644 --- a/packages/sit-onyx/src/components/examples/FormExample/FormExample.vue +++ b/packages/sit-onyx/src/components/examples/FormExample/FormExample.vue @@ -11,7 +11,6 @@ import { OnyxTextarea, useToast, type CheckboxGroupOption, - type SelectOption, } from "../../.."; type LegalTerm = "general-terms" | "optional-terms"; @@ -41,7 +40,7 @@ const handleSubmit = () => { }); }; -const fruitOptions = ref( +const fruitOptions = ref( [ "Apple", "Banana",