From 066cce64f57d3350d50c1bc308d8de17a2f849c2 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 17 Oct 2024 15:28:52 +0530 Subject: [PATCH] feat: remove workflow file type --- 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 b4d09ec8..98e4a3b4 100644 --- a/src/api/storage.ts +++ b/src/api/storage.ts @@ -32,7 +32,7 @@ export const getStoredRuns = async (): Promise => { } }; -export const getStoredRecording = async (id: string): Promise => { +export const getStoredRecording = async (id: string) => { try { const response = await axios.get(`http://localhost:8080/storage/recordings/${id}`); if (response.status === 200) {