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 ( -