From ced5b09daafe3da66b34d0159f14a858239987a8 Mon Sep 17 00:00:00 2001 From: Rohit Date: Mon, 20 Jan 2025 17:18:19 +0530 Subject: [PATCH] feat: persist isLogin on duplication --- server/src/routes/storage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/routes/storage.ts b/server/src/routes/storage.ts index ddadf240..a9f2e0e9 100644 --- a/server/src/routes/storage.ts +++ b/server/src/routes/storage.ts @@ -248,6 +248,7 @@ router.post('/recordings/:id/duplicate', requireSignIn, async (req: Authenticate updatedAt: currentTimestamp, }, recording: { ...originalRobot.recording, workflow }, + isLogin: originalRobot.isLogin, google_sheet_email: null, google_sheet_name: null, google_sheet_id: null,