File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -528,13 +528,10 @@ const GraphSection: React.FC<GraphSectionProps> = ({
528528
529529 const id = setInterval ( async ( ) => {
530530 // Check workflow status for each processing graph
531- const statusChecks = processingGraphs . map ( async ( graph ) => {
531+ const statusChecks = processingGraphs . map ( async graph => {
532532 if ( graph . system_metadata ?. workflow_id ) {
533533 try {
534- const result = await checkWorkflowStatus (
535- graph . system_metadata . workflow_id ,
536- graph . system_metadata . run_id
537- ) ;
534+ const result = await checkWorkflowStatus ( graph . system_metadata . workflow_id , graph . system_metadata . run_id ) ;
538535
539536 // If workflow is completed or failed, refresh the graph list
540537 if ( result . status === "completed" || result . status === "failed" ) {
Original file line number Diff line number Diff line change 11{
22 "name" : " @morphik/ui" ,
3- "version" : " 0.2.27 " ,
3+ "version" : " 0.2.28 " ,
44 "private" : true ,
55 "description" : " Modern UI component for Morphik - A powerful document processing and querying system" ,
66 "author" : " Morphik Team" ,
You can’t perform that action at this time.
0 commit comments