From 599bb6eff334a958939cd10f3a6d2dde5d058924 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 24 Oct 2024 03:22:29 +0530 Subject: [PATCH] feat: robot settings ui --- src/components/molecules/RecordingsTable.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index cc9c1770..f4e6c732 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -98,6 +98,8 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl const [rows, setRows] = React.useState([]); const [isModalOpen, setModalOpen] = React.useState(false); + console.log('rows', rows); + const { notify, setRecordings, browserId, setBrowserId, recordingUrl, setRecordingUrl, recordingName, setRecordingName, recordingId, setRecordingId } = useGlobalInfoStore(); const navigate = useNavigate();