Fix build error (#659)

This commit is contained in:
Matti Nannt
2023-08-07 17:13:50 +02:00
committed by GitHub
parent e5ef71ae87
commit 57733a75fc

View File

@@ -12,7 +12,7 @@ export default function Modal({
children: ReactNode;
isOpen: boolean;
placement: PlacementType;
highlightBorderColor: string | null;
highlightBorderColor: string | null | undefined;
}) {
const [show, setShow] = useState(false);