From bc9ab24c3343c499f475972045c12501f0aab37e Mon Sep 17 00:00:00 2001 From: Jason Zhu Date: Thu, 18 May 2023 23:01:46 +1000 Subject: [PATCH] Removed unnecessary InfoDialogProps --- src/features/InfoDialog/InfoDialog.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/features/InfoDialog/InfoDialog.tsx b/src/features/InfoDialog/InfoDialog.tsx index f88f758..536f083 100644 --- a/src/features/InfoDialog/InfoDialog.tsx +++ b/src/features/InfoDialog/InfoDialog.tsx @@ -3,11 +3,6 @@ import { useAppDispatch, useAppSelector } from 'app/hooks'; import InfoDialogComponent from 'components/InfoDialogComponent'; import { setCloseDialog } from './infoDialogSlice'; -export interface InfoDialogProps { - open: boolean; - pokemonId: string | number; -} - const InfoDialog = () => { const dispatch = useAppDispatch();