From 76d88c982d08345126277dc05d17d0f41822d3e8 Mon Sep 17 00:00:00 2001 From: Rohit Date: Wed, 22 Jan 2025 00:45:08 +0530 Subject: [PATCH] feat: rm console logs --- src/components/robot/RobotEdit.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/robot/RobotEdit.tsx b/src/components/robot/RobotEdit.tsx index d987e2c0..154566a3 100644 --- a/src/components/robot/RobotEdit.tsx +++ b/src/components/robot/RobotEdit.tsx @@ -153,7 +153,6 @@ export const RobotEditModal = ({ isOpen, handleStart, handleClose, initialSettin const getRobot = async () => { if (recordingId) { const robot = await getStoredRecording(recordingId); - console.log('Robot:', robot); setRobot(robot); } else { notify('error', t('robot_edit.notifications.update_failed'));