Skip to content

Commit a0b5f48

Browse files
committed
remove chip to fix dom error
1 parent 8379209 commit a0b5f48

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/components/runCards/WorkflowCard/WorkflowCard.tsx

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { type WorkflowSummary } from "@squonk/data-manager-client";
22

3-
import { Box, Chip, List, ListItemButton, ListItemText, Typography } from "@mui/material";
3+
import { Box, List, ListItemButton, ListItemText, Typography } from "@mui/material";
44
import A from "next/link";
55

66
import { useCurrentProjectId } from "../../../hooks/projectHooks";
@@ -100,14 +100,6 @@ export const WorkflowCard = ({ workflow, runningWorkflows = [] }: WorkflowCardPr
100100
Scope: {workflow.scope}
101101
{workflow.scope_id ? ` (${workflow.scope_id})` : null}
102102
</Typography>
103-
<Typography gutterBottom variant="body2">
104-
Validated:{" "}
105-
{workflow.validated ? (
106-
<Chip color="success" label="Validated" size="small" />
107-
) : (
108-
<Chip color="warning" label="Not validated" size="small" />
109-
)}
110-
</Typography>
111103
{!!workflow.source_id && (
112104
<Typography gutterBottom variant="body2">
113105
Source Workflow ID: {workflow.source_id}

0 commit comments

Comments
 (0)