From 50937eaa8d41472d2cb245e613da550b5bb8c38e Mon Sep 17 00:00:00 2001 From: Rohit Date: Tue, 3 Jun 2025 18:43:46 +0530 Subject: [PATCH] feat: modify api endpoint --- 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 074e3e2d..02558c72 100644 --- a/src/api/storage.ts +++ b/src/api/storage.ts @@ -161,7 +161,7 @@ export interface CreateRunResponseWithQueue extends CreateRunResponse { export const createAndRunRecording = async (id: string, settings: RunSettings): Promise => { try { const response = await axios.put( - `${apiUrl}/robot/runs/${id}`, + `${apiUrl}/storage/runs/${id}`, { ...settings, withCredentials: true } ); if (response.status === 200) {