chore: tidy up

This commit is contained in:
pit
2023-10-09 13:30:28 +03:00
parent 4c518df60d
commit a11440a7f3
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) => {