From f32d31a92e6d4f0c1f646504ceb36940f1d0e8de Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 03:03:52 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20unused=20variable=20in?= =?UTF-8?q?=20Capture.tsx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: artosien <65523959+artosien@users.noreply.github.com> --- src/pages/Capture.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Capture.tsx b/src/pages/Capture.tsx index 36bfd4c..914ebf3 100644 --- a/src/pages/Capture.tsx +++ b/src/pages/Capture.tsx @@ -7,10 +7,10 @@ export default function Capture() { const webcamRef = useRef(null); const [capturedCount, setCapturedCount] = useState(0); const totalNeeded = 12; - const [alignment, setAlignment] = useState(true); // Mock alignment + const [alignment] = useState(true); // Mock alignment const handleCapture = useCallback(() => { - const imageSrc = webcamRef.current?.getScreenshot(); + webcamRef.current?.getScreenshot(); // In a real app, we would save this image if (capturedCount < totalNeeded) { setCapturedCount(prev => prev + 1);