- {statusName ?? statusSummary.label}
+ {statusName ?? statusSummary?.label ?? ''}
);
};
diff --git a/components/dashboard/ImpactGroupActionList.js b/components/dashboard/ImpactGroupActionList.js
index be8ab4048..f75fc0e00 100644
--- a/components/dashboard/ImpactGroupActionList.js
+++ b/components/dashboard/ImpactGroupActionList.js
@@ -18,13 +18,9 @@ const ActionName = styled.span`
const Status = (props) => {
const { action, plan } = props;
-
- return (
-