Skip to content

Commit ada9278

Browse files
npm run format
1 parent 05e723b commit ada9278

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

ee/ui-component/components/GraphSection.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff 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") {

ee/ui-component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)