From d863b743f8b4738df30878e993b34dc26cc27318 Mon Sep 17 00:00:00 2001 From: Ansh Goyal Date: Wed, 13 Mar 2024 23:00:57 +0530 Subject: [PATCH] Update components/Modal.tsx Co-authored-by: Akshat Nema <76521428+akshatnema@users.noreply.github.com> --- components/Modal.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/Modal.tsx b/components/Modal.tsx index eb1a3dd34e4..9c20971fc7e 100644 --- a/components/Modal.tsx +++ b/components/Modal.tsx @@ -1,10 +1,10 @@ import { useEffect, useRef } from 'react'; interface IModalProps { - title: string; - children: React.ReactNode; - onModalClose?: () => void; - } + title: string; + children: React.ReactNode; + onModalClose?: () => void; +} /** * @description Modal component.