diff --git a/src/components/organisms/BrowserWindow.tsx b/src/components/organisms/BrowserWindow.tsx index 6b8f8843..90e9ea9e 100644 --- a/src/components/organisms/BrowserWindow.tsx +++ b/src/components/organisms/BrowserWindow.tsx @@ -38,6 +38,7 @@ export const BrowserWindow = () => { const [screenShot, setScreenShot] = useState(""); const [highlighterData, setHighlighterData] = useState<{ rect: DOMRect, selector: string } | null>(null); const [showConfirmation, setShowConfirmation] = useState(false); + const [isClickConfirmed, setIsClickConfirmed] = useState(false); const { socket } = useSocketStore(); const { width, height } = useBrowserDimensionsStore();