diff --git a/packages/ui/src/custom-components/tag-input.tsx b/packages/ui/src/custom-components/tag-input.tsx index fac2a35..09a7155 100644 --- a/packages/ui/src/custom-components/tag-input.tsx +++ b/packages/ui/src/custom-components/tag-input.tsx @@ -19,19 +19,7 @@ export function TagInput({ placeholder, separator = ',', className, - options = [ - 'test', - 'example', - 'demo', - 'sample', - 'react', - 'javascript', - 'typescript', - 'nodejs', - 'vue', - 'angular', - 'svelte', - ], + options = [], }: TagInputProps) { const [inputValue, setInputValue] = useState(''); const [tags, setTags] = useState(value);