From 66a594ed99203cd1c2248a351b18c8828f2e22a9 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Tue, 14 Jan 2025 10:19:43 +0000 Subject: [PATCH] feat: replace Feed component with IncidentFeedElement in IncidentView --- Dashboard/src/Pages/Incidents/View/Index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dashboard/src/Pages/Incidents/View/Index.tsx b/Dashboard/src/Pages/Incidents/View/Index.tsx index b90419c8d1..e1b78a32f5 100644 --- a/Dashboard/src/Pages/Incidents/View/Index.tsx +++ b/Dashboard/src/Pages/Incidents/View/Index.tsx @@ -54,7 +54,7 @@ import HeaderAlert, { HeaderAlertType, } from "Common/UI/Components/HeaderAlert/HeaderAlert"; import ColorSwatch from "Common/Types/ColorSwatch"; -import Feed from "Common/UI/Components/Feed/Feed"; +import IncidentFeedElement from "../../../Components/Incident/IncidentFeed"; const IncidentView: FunctionComponent< PageComponentProps @@ -770,6 +770,9 @@ const IncidentView: FunctionComponent< )} + + + );