chore: modify route name

This commit is contained in:
Rohit
2025-06-12 11:19:35 +05:30
parent 2eb7c4d851
commit 8e7ffd40e1

View File

@@ -186,7 +186,7 @@ export const interpretStoredRecording = async (id: string): Promise<boolean> =>
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,