From 51947a1ccc6c4a1e68ef0e84e9138414bf38e5e0 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 23 Oct 2024 02:36:04 +0530 Subject: [PATCH] feat: remove return 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 ccd54d1d..a39dc94c 100644 --- a/src/api/storage.ts +++ b/src/api/storage.ts @@ -148,7 +148,7 @@ export const scheduleStoredRecording = async (id: string, settings: ScheduleSett } } -export const getSchedule = async (id: string): Promise => { +export const getSchedule = async (id: string) => { try { const response = await axios.get(`http://localhost:8080/storage/schedule/${id}`); if (response.status === 200) {