From 0657b882cdb6133fd9ca4c25458398a5fbb97642 Mon Sep 17 00:00:00 2001 From: Luis Alvarez Date: Sun, 25 Oct 2020 19:03:47 -0500 Subject: [PATCH] Fix other types --- components/ui/Modal/Modal.tsx | 2 +- pages/forgot-password.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ui/Modal/Modal.tsx b/components/ui/Modal/Modal.tsx index c19a21b10..623592039 100644 --- a/components/ui/Modal/Modal.tsx +++ b/components/ui/Modal/Modal.tsx @@ -8,7 +8,7 @@ import { useOverlay, useModal, OverlayContainer } from '@react-aria/overlays' interface Props { className?: string children?: any - open: boolean + open?: boolean onClose?: () => void } diff --git a/pages/forgot-password.tsx b/pages/forgot-password.tsx index d5139b273..5ff128cc6 100644 --- a/pages/forgot-password.tsx +++ b/pages/forgot-password.tsx @@ -3,7 +3,7 @@ import { Logo, Modal, Button } from '@components/ui' export default function ForgotPassword() { return (
- {}}> + {}}>