diff --git a/v2/pink-sb/src/lib/input/ComboBox.svelte b/v2/pink-sb/src/lib/input/ComboBox.svelte index ba33998e98..9311d0f1c5 100644 --- a/v2/pink-sb/src/lib/input/ComboBox.svelte +++ b/v2/pink-sb/src/lib/input/ComboBox.svelte @@ -59,10 +59,6 @@ } }); - inputValue.subscribe((v) => { - value = options.find((opt) => opt.label === v)?.value || v; - }); - $: filteredOptions = $touchedInput ? options.filter(({ label }) => { const normalizedInput = $inputValue?.toLowerCase();