diff --git a/src/lib/components/ui/combobox/combobox.svelte b/src/lib/components/ui/combobox/combobox.svelte
index 72eb015a..c7f2182f 100644
--- a/src/lib/components/ui/combobox/combobox.svelte
+++ b/src/lib/components/ui/combobox/combobox.svelte
@@ -91,44 +91,46 @@
- No results found.
- {#if $inputType === 'dpad'}
-
- {
- closeAndFocusTrigger(ids.trigger)
- }}
- value='close'>
-
- Close
-
+
+ No results found.
+ {#if $inputType === 'dpad'}
+
+ {
+ closeAndFocusTrigger(ids.trigger)
+ }}
+ value='close'>
+
+ Close
+
+
+
+ {/if}
+
+ {#each items as item (item.value)}
+ {
+ handleSelect(item, ids.trigger)
+ }}>
+ value === item.value)
+ ? 'bg-primary text-primary-foreground'
+ : 'opacity-50 [&_svg]:invisible'
+ )}>
+
+
+ {item.label}
+
+ {/each}
-
- {/if}
-
- {#each items as item (item.value)}
- {
- handleSelect(item, ids.trigger)
- }}>
- value === item.value)
- ? 'bg-primary text-primary-foreground'
- : 'opacity-50 [&_svg]:invisible'
- )}>
-
-
- {item.label}
-
- {/each}
-
+