From 9f0cadacaa3c11292773e74dff3ecd1425cd464a Mon Sep 17 00:00:00 2001 From: Abhinav Date: Wed, 15 Jun 2022 19:28:49 +0530 Subject: [PATCH] udpate type --- src/components/WatchFolder/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/WatchFolder/index.tsx b/src/components/WatchFolder/index.tsx index 0e9233b3d..62fa01231 100644 --- a/src/components/WatchFolder/index.tsx +++ b/src/components/WatchFolder/index.tsx @@ -18,12 +18,12 @@ import constants from 'utils/strings/constants'; import { CheckmarkIcon } from './checkmarkIcon'; import { MappingEntry } from './mappingEntry'; -interface NewType { +interface Iprops { open: boolean; onClose: () => void; } -export default function WatchFolderModal({ open, onClose }: NewType) { +export default function WatchFolderModal({ open, onClose }: Iprops) { const [mappings, setMappings] = useState([]); const appContext = useContext(AppContext);