From e949cfd1f4f1dcbd07fd37aa2027343ae193ac76 Mon Sep 17 00:00:00 2001 From: Phillip Burch Date: Mon, 28 Sep 2020 21:57:20 -0500 Subject: [PATCH] Remove unused variable --- .../components/timeline/timeline.tsx | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/timeline/timeline.tsx b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/timeline/timeline.tsx index 2beb0982d13f59..a3b02b858385ed 100644 --- a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/timeline/timeline.tsx +++ b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/timeline/timeline.tsx @@ -303,21 +303,6 @@ export const Timeline: React.FC = ({ interval, yAxisFormatter, isVisible ); }; -const annotationStyle = { - line: { - strokeWidth: 3, - stroke: '#f00', - opacity: 0, - }, - details: { - fontSize: 12, - fontFamily: 'Arial', - fontStyle: 'bold', - fill: 'gray', - padding: 0, - }, -}; - const TimelineContainer = euiStyled.div` background-color: ${(props) => props.theme.eui.euiPageBackgroundColor}; border-top: 1px solid ${(props) => props.theme.eui.euiColorLightShade};