From 50e3cac63d42820f6237a41302025652751286a0 Mon Sep 17 00:00:00 2001 From: RohitR311 Date: Mon, 18 Nov 2024 22:15:04 +0530 Subject: [PATCH] feat: add robot edit modal --- src/components/molecules/RobotEdit.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/molecules/RobotEdit.tsx b/src/components/molecules/RobotEdit.tsx index f35e1048..b7e12ed5 100644 --- a/src/components/molecules/RobotEdit.tsx +++ b/src/components/molecules/RobotEdit.tsx @@ -55,10 +55,11 @@ interface RobotSettingsProps { handleStart: (settings: RobotSettings) => void; handleClose: () => void; initialSettings?: RobotSettings | null; - + } export const RobotEditModal = ({ isOpen, handleStart, handleClose, initialSettings }: RobotSettingsProps) => { + console.log("robot edit"); const [robot, setRobot] = useState(null); // const [settings, setSettings] = useState({ // name: '',