This commit is contained in:
Andras Bacsai 2023-08-27 15:44:36 +02:00
parent 75fcd88f73
commit 19b1f5004a
2 changed files with 1 additions and 3 deletions

View File

@ -32,7 +32,6 @@ class User extends Authenticatable implements SendsEmail
$team = [
'name' => $user->name . "'s Team",
'personal_team' => true,
'show_boarding' => true,
];
if ($user->id === 0) {
$team['id'] = 0;

View File

@ -48,8 +48,7 @@ function currentTeam()
function showBoarding(): bool
{
return false;
// return currentTeam()->show_boarding ?? false;
return currentTeam()->show_boarding ?? false;
}
function refreshSession(): void
{