From 8e7ffd40e1bc3592b057da1e92cbde7bb97a09f7 Mon Sep 17 00:00:00 2001 From: Rohit Date: Thu, 12 Jun 2025 11:19:35 +0530 Subject: [PATCH] chore: modify route name --- 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 9e47f533..65b6caa4 100644 --- a/src/api/storage.ts +++ b/src/api/storage.ts @@ -186,7 +186,7 @@ export const interpretStoredRecording = async (id: string): Promise => export const notifyAboutAbort = async (id: string): Promise<{ success: boolean; isQueued?: boolean }> => { try { - const response = await axios.post(`${apiUrl}/robot/runs/abort/${id}`, { withCredentials: true }); + const response = await axios.post(`${apiUrl}/storage/runs/abort/${id}`, { withCredentials: true }); if (response.status === 200) { return { success: response.data.success,