Merge pull request 'fix: lootbox routing' (!281) from fix-lootbox-routing into main
All checks were successful
Release / Release (push) Successful in 58s
Release / Build Backend Image (push) Successful in 24s
Release / Build Frontend Image (push) Successful in 29s

Reviewed-on: #281
Reviewed-by: Jan K9f <jan@kjan.email>
This commit is contained in:
Phan Huy Tran 2025-06-04 08:14:22 +00:00
commit 9a7049d6ab
No known key found for this signature in database
GPG key ID: 944223E4D46B7412

View file

@ -62,15 +62,13 @@ export const routes: Routes = [
loadComponent: () =>
import('./feature/lootboxes/lootbox-selection/lootbox-selection.component'),
canActivate: [authGuard],
children: [
},
{
path: 'open/:id',
path: 'lootboxes/open/:id',
loadComponent: () =>
import('./feature/lootboxes/lootbox-opening/lootbox-opening.component'),
canActivate: [authGuard],
},
],
},
{
path: 'dice',
loadComponent: () => import('./feature/game/dice/dice.component'),