From 88170091b7500531b32157f227da51541f95fdec Mon Sep 17 00:00:00 2001 From: "groombook-engineer[bot]" <3141748+groombook-engineer[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 23:08:30 +0000 Subject: [PATCH] fix: enable Go to Dashboard button on setup wizard final step The "Go to Dashboard" button on Step 5 of the setup wizard was permanently disabled because the disabled attribute checked !canGoNext, which is always true on the last step (since canGoNext only allows advancing to the next step). Changed the disabled attribute from: disabled={!canGoNext || loading} to: disabled={(!canGoNext && !isLast) || loading} This allows the button to be clickable on the final step while preserving validation on steps 1-4. The navigate("/admin") call already handles the last-step click correctly. 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() { )}