Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMachin1997 committed Aug 26, 2023
1 parent 0feb3e2 commit 62b5ccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Core/Listbox/ListboxOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import classNames from 'classnames';
import { VirtualizedListProps } from '../../../types/DropdownElementTypes';
import Icon from '../Icon/Icon';

const VirtualizedList = React.memo(
const ListboxOptions = React.memo(
({ options, noOptionsAvailableMessage, isMultiSelect, truncateText }: VirtualizedListProps) => {
// This will store the reference to the options list (Wrapper for the options)
const optionsRef = React.useRef<HTMLDivElement>(null);
Expand Down Expand Up @@ -108,4 +108,4 @@ const VirtualizedList = React.memo(
}
);

export default VirtualizedList;
export default ListboxOptions;

0 comments on commit 62b5ccc

Please sign in to comment.