From 15f01ab250f3e7c28acba14efea2d64a2cd4b89f Mon Sep 17 00:00:00 2001 From: Eyal Kapon Date: Mon, 19 Aug 2024 17:12:15 +0300 Subject: [PATCH] remove redundant space made by rebase, and unused func --- client/src/pages/Scan.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/pages/Scan.tsx b/client/src/pages/Scan.tsx index 427b7d8..a0c9268 100644 --- a/client/src/pages/Scan.tsx +++ b/client/src/pages/Scan.tsx @@ -1,4 +1,4 @@ -import { Box, styled, Typography, SelectChangeEvent, CircularProgress, Button, useTheme } from '@mui/material'; +import { Box, styled, Typography, CircularProgress, Button, useTheme } from '@mui/material'; import { useEffect, useState } from 'react'; import Select from '../components/Select'; @@ -103,7 +103,6 @@ export const ScanPage = () => { saveScanResults(scanId, results); } catch (e: any) { setScanData({ ...scanData, [scanId]: {} }); - ddToast.error(e.toString()); } };