Fix lint issues

This commit is contained in:
Tuan Dang
2022-12-19 12:05:19 -05:00
parent 6bb24933bf
commit 2d77fe9ca3
7 changed files with 207 additions and 23 deletions

View File

@@ -11,7 +11,7 @@ import { Listbox, Transition } from "@headlessui/react";
interface ListBoxProps {
selected: string;
onChange: (arg: string) => void;
data: string[];
data: string[] | null;
text?: string;
buttonAction?: () => void;
isFull?: boolean;