From 068460d853da4f8177c4c1eb07d9eeffd85fde8d Mon Sep 17 00:00:00 2001 From: rosslh Date: Thu, 19 Feb 2026 15:33:24 -0800 Subject: [PATCH] feat(onboarding): skip boarding wizard for new users Customers land directly on the dashboard instead of the setup wizard, which shows a misleading localhost vs remote server warning that conflicts with MapleDeploy's single-VM model. --- app/Models/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Models/User.php b/app/Models/User.php index 4561cddb2..8172dc960 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -81,7 +81,7 @@ protected static function boot() $team = [ 'name' => $user->name."'s Team", 'personal_team' => true, - 'show_boarding' => true, + 'show_boarding' => false, ]; if ($user->id === 0) { $team['id'] = 0; @@ -184,7 +184,7 @@ public function recreate_personal_team() $team = [ 'name' => $this->name."'s Team", 'personal_team' => true, - 'show_boarding' => true, + 'show_boarding' => false, ]; if ($this->id === 0) { $team['id'] = 0;