1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-22 16:29:09 +01:00

fix homepage routes

This commit is contained in:
Thomas Rittson 2021-06-08 15:49:03 +10:00
parent 5b06daace9
commit 44d6a99575
2 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@ export class LockGuardService extends BaseLockGuardService {
super(vaultTimeoutService, userService, router);
}
protected homepage = '/tabs/current';
protected homepage = 'tabs/current';
}

View File

@ -15,5 +15,5 @@ export class UnauthGuardService extends BaseUnauthGuardService {
super(vaultTimeoutService, userService, router);
}
protected homepage = '/tabs/current';
protected homepage = 'tabs/current';
}