diff --git a/components/dashboard/cells/StatusCell.tsx b/components/dashboard/cells/StatusCell.tsx index 8b4ccbb1..f2d40fba 100644 --- a/components/dashboard/cells/StatusCell.tsx +++ b/components/dashboard/cells/StatusCell.tsx @@ -18,6 +18,10 @@ const StatusDisplay = styled.div` const StatusCell = ({ action, plan }: Props) => { const { t } = useTranslation(); + if (action.statusSummary.identifier === 'UNDEFINED') { + return null; + } + return (