From 69c06429c23a3d3db12714fcfe3c461c097d0f34 Mon Sep 17 00:00:00 2001 From: Shivanshu Raj Shrivastava Date: Mon, 5 May 2025 03:37:48 +0530 Subject: [PATCH] fix: frontend fixes Signed-off-by: Shivanshu Raj Shrivastava --- .../components/FunnelConfiguration/InterStepConfig.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/pages/TracesFunnelDetails/components/FunnelConfiguration/InterStepConfig.tsx b/frontend/src/pages/TracesFunnelDetails/components/FunnelConfiguration/InterStepConfig.tsx index 6490a1f1b976..08038e65cd4f 100644 --- a/frontend/src/pages/TracesFunnelDetails/components/FunnelConfiguration/InterStepConfig.tsx +++ b/frontend/src/pages/TracesFunnelDetails/components/FunnelConfiguration/InterStepConfig.tsx @@ -1,5 +1,7 @@ import './InterStepConfig.styles.scss'; +// COMMENTED OUT: Latency type (P99/P95/P90) UI between funnel steps +/* import { Divider } from 'antd'; import SignozRadioGroup from 'components/SignozRadioGroup/SignozRadioGroup'; import { useFunnelContext } from 'pages/TracesFunnels/FunnelContext'; @@ -39,5 +41,11 @@ function InterStepConfig({ ); } +*/ + +// Dummy export to avoid import errors +function InterStepConfig(): null { + return null; +} export default InterStepConfig;