Skip to content

Commit

Permalink
fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JoCa96 committed Jan 17, 2025
1 parent 2e7a2c1 commit 77d2951
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
OnyxTextarea,
useToast,
type CheckboxGroupOption,
type SelectOption,
} from "../../..";
type LegalTerm = "general-terms" | "optional-terms";
Expand Down Expand Up @@ -41,7 +40,7 @@ const handleSubmit = () => {
});
};
const fruitOptions = ref<SelectOption[]>(
const fruitOptions = ref(
[
"Apple",
"Banana",
Expand Down

0 comments on commit 77d2951

Please sign in to comment.