From b7aca0e3925c78944c227d1507d0a2b62cf8377e Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 11 Dec 2025 14:40:25 +0530 Subject: [PATCH] feat: change card order --- src/components/robot/pages/RobotCreate.tsx | 47 +++++++++++----------- 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/src/components/robot/pages/RobotCreate.tsx b/src/components/robot/pages/RobotCreate.tsx index e387a2e9..5a0a306c 100644 --- a/src/components/robot/pages/RobotCreate.tsx +++ b/src/components/robot/pages/RobotCreate.tsx @@ -253,30 +253,6 @@ const RobotCreate: React.FC = () => { - setGenerationMode('agent')} - sx={{ - flex: 1, - cursor: 'pointer', - border: '2px solid', - borderColor: generationMode === 'agent' ? '#ff00c3' : 'divider', - transition: 'all 0.2s', - '&:hover': { - borderColor: '#ff00c3', - } - }} - > - - - - AI Powered - - - AI will take care of everything - - - - setGenerationMode('recorder')} sx={{ @@ -300,6 +276,29 @@ const RobotCreate: React.FC = () => { + setGenerationMode('agent')} + sx={{ + flex: 1, + cursor: 'pointer', + border: '2px solid', + borderColor: generationMode === 'agent' ? '#ff00c3' : 'divider', + transition: 'all 0.2s', + '&:hover': { + borderColor: '#ff00c3', + } + }} + > + + + + AI Powered + + + AI will take care of everything + + +