From 0a1badea849c5c515961428f871fb55b3755c59e Mon Sep 17 00:00:00 2001 From: amhsirak Date: Thu, 26 Jun 2025 22:43:29 +0530 Subject: [PATCH] feat: better error message --- src/components/recorder/LeftSidePanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/recorder/LeftSidePanel.tsx b/src/components/recorder/LeftSidePanel.tsx index af519200..8fddbbb4 100644 --- a/src/components/recorder/LeftSidePanel.tsx +++ b/src/components/recorder/LeftSidePanel.tsx @@ -19,7 +19,7 @@ const fetchWorkflow = (id: string, callback: (response: WorkflowFile) => void) = throw new Error("No workflow found"); } } - ).catch((error) => { console.log(error.message) }) + ).catch((error) => { console.log(`Failed to fetch workflow:`,error.message) }) }; interface LeftSidePanelProps {