From 139f90dff631c0c98b6eeebedd188cc377837b00 Mon Sep 17 00:00:00 2001 From: Darshan Date: Mon, 26 May 2025 18:49:52 +0530 Subject: [PATCH] test. --- v2/pink-sb/src/lib/input/ComboBox.svelte | 4 ---- 1 file changed, 4 deletions(-) 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();