From 261f47dde0a46bd743446c07983da7c02cc22d86 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 21 Oct 2024 01:00:33 +0530 Subject: [PATCH] fix: use React.useState --- src/components/molecules/RecordingsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 1dfa414a..21e0a2ab 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -89,7 +89,7 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl const [page, setPage] = React.useState(0); const [rowsPerPage, setRowsPerPage] = React.useState(10); const [rows, setRows] = React.useState([]); - const [isModalOpen, setModalOpen] = useState(false); + const [isModalOpen, setModalOpen] = React.useState(false); const { notify, setRecordings, browserId, setBrowserId } = useGlobalInfoStore(); const navigate = useNavigate();