From 1d7123641dee5298cf7b2ad19700b96039d4b7a6 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Fri, 7 Nov 2025 22:29:04 +0100 Subject: [PATCH] Fix create/join buttons not advancing to next step Added step advancement logic when selecting create/join action --- src/App.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index f9614c9..7cafe40 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -441,7 +441,12 @@ function App() { {step === 1 && ( { + setAction(selectedAction); + if (selectedAction !== 'scan') { + setStep(2); + } + }} onScanComplete={handleScanComplete} onScanCancel={handleScanCancel} log={log}