From 7d34f18156b6f60ee4aaa29d3b1c3286014ad6c6 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Mon, 18 Nov 2024 21:51:56 +0530 Subject: [PATCH] chore: remove console log --- src/api/storage.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/api/storage.ts b/src/api/storage.ts index b4d24b9f..90ab91af 100644 --- a/src/api/storage.ts +++ b/src/api/storage.ts @@ -35,7 +35,6 @@ export const updateRecording = async (id: string, data: { name?: string; limit?: export const duplicateRecording = async (id: string, targetUrl: string): Promise => { try { - console.log("duplicating"); const response = await axios.post(`${apiUrl}/storage/recordings/${id}/duplicate`, { targetUrl, });