From 1acea5ae692dda0c65d11a1e1dd4040c86854105 Mon Sep 17 00:00:00 2001 From: Barkley Trimsworth Date: Wed, 1 Apr 2026 20:35:27 +0000 Subject: [PATCH] fix: enable Go to Dashboard button on setup wizard final step The button was permanently disabled on Step 5 because canGoNext is false when step === STEPS.length - 1. Changed disabled condition to (!canGoNext && !isLast) so the final step bypasses canGoNext validation while preserving it on steps 1-4. Fixes GRO-373 Co-Authored-By: Paperclip --- apps/web/src/pages/SetupWizard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/pages/SetupWizard.jsx b/apps/web/src/pages/SetupWizard.jsx index 69ed08d..6620845 100644 --- a/apps/web/src/pages/SetupWizard.jsx +++ b/apps/web/src/pages/SetupWizard.jsx @@ -204,7 +204,7 @@ export function SetupWizard() { )}