Remove unused import

This commit is contained in:
Daniel 2023-10-07 18:49:45 -04:00 committed by GitHub
parent 1c755095bd
commit 6f1bcc2ee8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,6 @@ import { ArrowDropdown } from '../icons/ArrowDropdown';
import Heading from './Heading'; import Heading from './Heading';
import Button from './Button'; import Button from './Button';
import SelectOnlyIcon from '../icons/SelectOnly'; import SelectOnlyIcon from '../icons/SelectOnly';
import useSWR from 'swr';
export default function MultiSelect({ className, title, options, selection, onToggle, onShowAll, onSelectSingle }) { export default function MultiSelect({ className, title, options, selection, onToggle, onShowAll, onSelectSingle }) {
const popupRef = useRef(null); const popupRef = useRef(null);