🐛 fix: missing props

This commit is contained in:
Wahyu Kurniawan 2024-03-08 15:32:11 +07:00
parent 300b8e4b5e
commit 56e9be59ad
No known key found for this signature in database
GPG Key ID: 040A1549143A8E33

View File

@ -12,6 +12,7 @@ import { useNavigate } from 'react-router-dom';
import { useCombobox } from 'downshift';
interface ProjectSearchBarDialogProps extends Dialog.DialogProps {
open?: boolean;
onClose?: () => void;
onClickItem?: (data: Project) => void;
}