From be4c0f2578fc52964a84d1392385dd3ab9dbd1fd Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Thu, 29 Jun 2023 11:08:00 +0200 Subject: [PATCH] chore: remove unused imports from `yarn lint` (#4082) --- .../AdvancedPlaygroundResultsTable.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/frontend/src/component/playground/Playground/AdvancedPlaygroundResultsTable/AdvancedPlaygroundResultsTable.tsx b/frontend/src/component/playground/Playground/AdvancedPlaygroundResultsTable/AdvancedPlaygroundResultsTable.tsx index 07e540a75a..9aafa8d537 100644 --- a/frontend/src/component/playground/Playground/AdvancedPlaygroundResultsTable/AdvancedPlaygroundResultsTable.tsx +++ b/frontend/src/component/playground/Playground/AdvancedPlaygroundResultsTable/AdvancedPlaygroundResultsTable.tsx @@ -18,14 +18,7 @@ import { LinkCell } from 'component/common/Table/cells/LinkCell/LinkCell'; import { useSearch } from 'hooks/useSearch'; import { createLocalStorage } from 'utils/createLocalStorage'; -import { - Box, - Link, - styled, - Typography, - useMediaQuery, - useTheme, -} from '@mui/material'; +import { Box, Typography, useMediaQuery, useTheme } from '@mui/material'; import useLoading from 'hooks/useLoading'; import { useConditionallyHiddenColumns } from 'hooks/useConditionallyHiddenColumns'; import { AdvancedPlaygroundEnvironmentCell } from './AdvancedPlaygroundEnvironmentCell/AdvancedPlaygroundEnvironmentCell';