feat: better error message

This commit is contained in:
amhsirak
2025-06-26 22:43:42 +05:30
parent 0a1badea84
commit 3d1a38ec62

View File

@@ -32,7 +32,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 RightSidePanelProps {