From 409678ef111e4c56e7990f994a04c78092ccc5e8 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 4 Aug 2024 03:21:55 +0530 Subject: [PATCH] chore: ConfirmationBox cleanup --- src/components/organisms/BrowserWindow.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/organisms/BrowserWindow.tsx b/src/components/organisms/BrowserWindow.tsx index 49d31c98..41c422ed 100644 --- a/src/components/organisms/BrowserWindow.tsx +++ b/src/components/organisms/BrowserWindow.tsx @@ -6,7 +6,6 @@ import { Highlighter } from "../atoms/Highlighter"; import { GenericModal } from '../atoms/GenericModal'; import { useActionContext } from '../../context/browserActions'; import { useBrowserSteps } from '../../context/browserSteps'; -import { ConfirmationBox } from "../atoms/ConfirmationBox"; interface ElementInfo { tagName: string; @@ -44,7 +43,6 @@ export const BrowserWindow = () => { const [canvasRef, setCanvasReference] = useState | undefined>(undefined); const [screenShot, setScreenShot] = useState(""); const [highlighterData, setHighlighterData] = useState<{ rect: DOMRect, selector: string, elementInfo: ElementInfo | null; } | null>(null); - const [showConfirmation, setShowConfirmation] = useState(false); const [showAttributeModal, setShowAttributeModal] = useState(false); const [attributeOptions, setAttributeOptions] = useState([]); const [selectedElement, setSelectedElement] = useState<{selector: string, info: ElementInfo | null} | null>(null);