Skip to content

Commit b4516dc

Browse files
committed
fix: revert 2nd
1 parent 310672f commit b4516dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/MultiSelectCombobox/MultiSelectCombobox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export const MultiSelectCombobox = forwardRef<
215215
const dropdownRef = useRef<HTMLDivElement>(null);
216216

217217
const [selected, setSelected] = useState<Option[]>(
218-
value ?? arrayDefaultOptions ?? [],
218+
arrayDefaultOptions ?? [],
219219
);
220220
const [options, setOptions] = useState<GroupOption>(
221221
transitionToGroupOption(arrayDefaultOptions, groupBy),

0 commit comments

Comments
 (0)