From f169a793860169ad3a946d48a48dee9db2d59fd9 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Fri, 20 Jun 2025 13:58:29 +0200 Subject: [PATCH] add deprecation notice --- frontend/src/component/events/EventDiff/EventDiff.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/component/events/EventDiff/EventDiff.tsx b/frontend/src/component/events/EventDiff/EventDiff.tsx index f5bc7bf8fd..600b056608 100644 --- a/frontend/src/component/events/EventDiff/EventDiff.tsx +++ b/frontend/src/component/events/EventDiff/EventDiff.tsx @@ -220,4 +220,7 @@ const EventDiff: FC = (props) => { return ; }; +/** + * @deprecated remove the default export with flag improvedJsonDiff. Switch imports in files that use this to the named import instead. + */ export default EventDiff;