diff --git a/server/src/routes/storage.ts b/server/src/routes/storage.ts index e7e3939c..d2649c71 100644 --- a/server/src/routes/storage.ts +++ b/server/src/routes/storage.ts @@ -405,7 +405,7 @@ router.post('/recordings/:id/duplicate', requireSignIn, async (req: Authenticate return step; }); - const currentTimestamp = new Date().toISOString(); + const currentTimestamp = new Date().toLocaleString(); const newRobot = await Robot.create({ id: uuid(), diff --git a/src/components/robot/RecordingsTable.tsx b/src/components/robot/RecordingsTable.tsx index d412d1b7..620a6f55 100644 --- a/src/components/robot/RecordingsTable.tsx +++ b/src/components/robot/RecordingsTable.tsx @@ -749,4 +749,4 @@ const modalStyle = { height: 'fit-content', display: 'block', padding: '20px', -}; \ No newline at end of file +};