From 4f909a5fc322c1df63576951965dc492c0786276 Mon Sep 17 00:00:00 2001 From: Rohit Date: Wed, 29 Jan 2025 23:52:39 +0530 Subject: [PATCH] feat: return robot meta id --- src/api/storage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/storage.ts b/src/api/storage.ts index 290f6e7f..0bfcaf15 100644 --- a/src/api/storage.ts +++ b/src/api/storage.ts @@ -161,7 +161,7 @@ export const createRunForStoredRecording = async (id: string, settings: RunSetti } } catch (error: any) { console.log(error); - return { browserId: '', runId: '' }; + return { browserId: '', runId: '', robotMetaId: '' }; } }