From 656c421201f299a93f909d9e5359be70e1a769c5 Mon Sep 17 00:00:00 2001 From: Marcus Eide Date: Wed, 9 Sep 2020 12:47:07 +0200 Subject: [PATCH] Remove unused imports --- plugins/lighthouse/src/components/AuditList/index.tsx | 4 ++-- plugins/lighthouse/src/components/AuditView/index.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/lighthouse/src/components/AuditList/index.tsx b/plugins/lighthouse/src/components/AuditList/index.tsx index 992af855d3..a75bb25a0d 100644 --- a/plugins/lighthouse/src/components/AuditList/index.tsx +++ b/plugins/lighthouse/src/components/AuditList/index.tsx @@ -16,8 +16,8 @@ import React, { useState, useMemo, FC, ReactNode } from 'react'; import { useLocalStorage, useAsync } from 'react-use'; -import { useNavigate, Link } from 'react-router-dom'; -import { Grid, Button, Typography } from '@material-ui/core'; +import { useNavigate } from 'react-router-dom'; +import { Grid, Button } from '@material-ui/core'; import Alert from '@material-ui/lab/Alert'; import Pagination from '@material-ui/lab/Pagination'; import { diff --git a/plugins/lighthouse/src/components/AuditView/index.tsx b/plugins/lighthouse/src/components/AuditView/index.tsx index 17b152c89b..8080fcabd0 100644 --- a/plugins/lighthouse/src/components/AuditView/index.tsx +++ b/plugins/lighthouse/src/components/AuditView/index.tsx @@ -14,7 +14,7 @@ * limitations under the License. */ import React, { useState, useEffect, ReactNode, FC } from 'react'; -import { Link, generatePath, useParams, useNavigate } from 'react-router-dom'; +import { Link, useParams, useNavigate } from 'react-router-dom'; import { useAsync } from 'react-use'; import { makeStyles,