From 9a580915e6455fa03e5d38738388b27de16324b7 Mon Sep 17 00:00:00 2001 From: sawhil Date: Mon, 7 Apr 2025 17:42:25 +0530 Subject: [PATCH] fix: removed not required prop --- .../TraceWaterfall/SpanLineActionButtons/index.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/frontend/src/container/TraceWaterfall/SpanLineActionButtons/index.tsx b/frontend/src/container/TraceWaterfall/SpanLineActionButtons/index.tsx index f8646cd186..aad22333fa 100644 --- a/frontend/src/container/TraceWaterfall/SpanLineActionButtons/index.tsx +++ b/frontend/src/container/TraceWaterfall/SpanLineActionButtons/index.tsx @@ -7,16 +7,14 @@ import { Span } from 'types/api/trace/getTraceV2'; export interface SpanLineActionButtonsProps { span: Span; - customClassName?: string; } export default function SpanLineActionButtons({ span, - customClassName = '', }: SpanLineActionButtonsProps): JSX.Element { const { onSpanCopy } = useCopySpanLink(span); return ( -
+