Skip to content

Commit

Permalink
fix: all selected
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Oct 4, 2023
1 parent af80e9d commit b23f783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/common/components/MultiSelectDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function DropdownEmpty({query}: {query: string}): ReactElement {
export function MultiSelectDropdown({options, onSelect, placeholder = ''}: TMultiSelectProps): ReactElement {
const [isOpen, set_isOpen] = useThrottledState(false, 400);
const [currentOptions, set_currentOptions] = useState<TMultiSelectOptionProps[]>(options);
const [areAllSelected, set_areAllSelected] = useState(true);
const [areAllSelected, set_areAllSelected] = useState(false);
const [query, set_query] = useState('');
const componentRef = useRef(null);

Expand Down

0 comments on commit b23f783

Please sign in to comment.