From 061838a5faacd55412b943898c905690ceea04c1 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 24 Oct 2024 15:41:50 +0530 Subject: [PATCH] chore: lint --- src/components/molecules/BrowserRecordingSave.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/molecules/BrowserRecordingSave.tsx b/src/components/molecules/BrowserRecordingSave.tsx index 6e9da12b..33cf179c 100644 --- a/src/components/molecules/BrowserRecordingSave.tsx +++ b/src/components/molecules/BrowserRecordingSave.tsx @@ -1,13 +1,11 @@ import React, { useState } from 'react' -import { Paper, Grid, IconButton, Button, Box, Typography } from '@mui/material'; +import { Grid, Button, Box, Typography } from '@mui/material'; import { SaveRecording } from "./SaveRecording"; -import { Circle, Add, Logout, Clear } from "@mui/icons-material"; import { useGlobalInfoStore } from '../../context/globalInfo'; import { stopRecording } from "../../api/recording"; -import { Link, useLocation, useNavigate } from 'react-router-dom'; +import { useNavigate } from 'react-router-dom'; import { GenericModal } from "../atoms/GenericModal"; - const BrowserRecordingSave = () => { const [openModal, setOpenModal] = useState(false); const { recordingName, browserId, setBrowserId, notify } = useGlobalInfoStore();