chore: tidy up

This commit is contained in:
pit
2023-10-09 13:30:28 +03:00
committed by Mythie
parent 15a1c1da3f
commit 92b5111d7e
7 changed files with 15 additions and 88 deletions

View File

@ -16,7 +16,7 @@ import { Popover, PopoverContent, PopoverTrigger } from '@documenso/ui/primitive
type ComboboxProps = {
listValues: string[];
onChange: (values: string[]) => void;
onChange: (_values: string[]) => void;
};
const Combobox = ({ listValues, onChange }: ComboboxProps) => {