From 84097e57e45cbdc878bb384a0c603641dbb7bf3e Mon Sep 17 00:00:00 2001 From: "groombook-engineer[bot]" <269742240+groombook-engineer[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 21:15:06 +0000 Subject: [PATCH] fix: enable Go to Dashboard button on setup wizard final step (#201) 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: Barkley Trimsworth 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() { )}