We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b709ae commit bee5783Copy full SHA for bee5783
site/src/components/MultiSelectCombobox/MultiSelectCombobox.tsx
@@ -430,11 +430,9 @@ export const MultiSelectCombobox = forwardRef<
430
return undefined;
431
};
432
433
- useEffect(() => {
434
- if (inputRef.current && inputProps?.id) {
435
- inputRef.current.id = inputProps?.id;
436
- }
437
- }, [inputProps?.id]);
+ if (inputRef.current && inputProps?.id) {
+ inputRef.current.id = inputProps?.id;
+ }
438
439
const fixedOptions = selected.filter((s) => s.fixed);
440
0 commit comments