From 53c7a9e7d64c640b9fdf2ed590e5dc40c0b2bbd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linn=C3=A9a=20Ivansson?= Date: Mon, 21 Nov 2022 14:54:29 +0100 Subject: [PATCH] Remove unused imports. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Linnéa Ivansson --- .../src/components/ErrorReporting/ErrorReporting.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/kubernetes/src/components/ErrorReporting/ErrorReporting.tsx b/plugins/kubernetes/src/components/ErrorReporting/ErrorReporting.tsx index b87fa3b104..6105f29ba8 100644 --- a/plugins/kubernetes/src/components/ErrorReporting/ErrorReporting.tsx +++ b/plugins/kubernetes/src/components/ErrorReporting/ErrorReporting.tsx @@ -15,9 +15,8 @@ */ import * as React from 'react'; import { DetectedError, DetectedErrorsByCluster } from '../../error-detection'; -import { Chip, Typography, Grid } from '@material-ui/core'; -import EmptyStateImage from '../../assets/emptystate.svg'; -import { Table, TableColumn, InfoCard } from '@backstage/core-components'; +import { Chip } from '@material-ui/core'; +import { Table, TableColumn } from '@backstage/core-components'; type ErrorReportingProps = { detectedErrors: DetectedErrorsByCluster;