Merge pull request 'fix: Redirect to homepage after login' (!40) from fix/home-redirect into main

Reviewed-on: https://git.simonis.lol/projects/casino/pulls/40
Reviewed-by: Constantin Simonis <constantin@simonis.lol>
Reviewed-by: lziemke <lea.z4@schule.bremen.de>
This commit is contained in:
Huy 2025-02-26 09:10:10 +00:00
commit 9104c6eb2c
2 changed files with 2 additions and 2 deletions

View file

@ -21,6 +21,6 @@ export default class LoginSuccessComponent implements OnInit {
const user = await this.userService.getOrCreateUser(userProfile);
sessionStorage.setItem('user', JSON.stringify(user));
this.router.navigate(['']);
this.router.navigate(['home']);
}
}

View file

@ -6,7 +6,7 @@
<span>Trustworthy Casino</span>
</a>
<div class="hidden md:flex items-center space-x-1">
<a routerLink="/games" class="nav-link">Spiele</a>
<a routerLink="/home" class="nav-link">Spiele</a>
</div>
</div>