Merge pull request #181 from getmaxun/robot-duplication

feat: robot duplication
This commit is contained in:
Karishma Shukla
2024-11-19 02:06:18 +05:30
committed by GitHub
9 changed files with 308 additions and 74 deletions

View File

@@ -54,10 +54,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<RobotSettings | null>(null);
const { recordingId, notify } = useGlobalInfoStore();