feat: better error message

This commit is contained in:
amhsirak
2025-06-26 22:43:29 +05:30
parent ab09cddf70
commit 0a1badea84

View File

@@ -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 {