wip: desktop progress

This commit is contained in:
Adam
2025-09-19 10:53:45 -05:00
parent f57c3f7cf6
commit d88c17dad0

View File

@@ -64,9 +64,6 @@ export function Select<T>(props: SelectProps<T>) {
return (
<KobalteSelect<T, { category: string; options: T[] }>
allowDuplicateSelectionEvents={false}
disallowEmptySelection={true}
closeOnSelection={false}
value={props.current}
options={grouped()}
optionValue={(x) => (props.value ? props.value(x) : (x as string))}
@@ -158,7 +155,6 @@ export function Select<T>(props: SelectProps<T>) {
}}
>
<Show when={props.filter}>
<form>
<input
ref={(el) => (inputRef = el)}
id="select-filter"
@@ -178,7 +174,6 @@ export function Select<T>(props: SelectProps<T>) {
"px-2 pb-2 text-text font-light placeholder-text-muted/70 text-xs focus:outline-none": true,
}}
/>
</form>
</Show>
<KobalteSelect.Listbox
ref={(el) => (listboxRef = el)}