From 7c1129227e8580fa836abe41f56946e8685578a4 Mon Sep 17 00:00:00 2001 From: orfelorfel23 Date: Sun, 31 May 2026 15:05:44 +0200 Subject: [PATCH] Fix infinite camera capture loop --- App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App.tsx b/App.tsx index 720b9801..bca2270b 100644 --- a/App.tsx +++ b/App.tsx @@ -110,7 +110,7 @@ export default function App() { onPhotoCaptured={handlePhotoCaptured} onBurstComplete={handleBurstComplete} onCancel={handleReset} - isIdle={currentScreen === 'home'} + isIdle={currentScreen !== 'camera'} onStartBooth={handleStartBooth} onNavigateToAdmin={handleOpenAdmin} adminPassword={settings.adminPassword}