Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
[fix] Ran prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
addisonbeck committed May 3, 2022
1 parent 8096eab commit 5bdf7dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion angular/src/guards/auth.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class AuthGuard extends BaseGuard implements CanActivate {
private authService: AuthService,
router: Router,
private messagingService: MessagingService,
private keyConnectorService: KeyConnectorService,
private keyConnectorService: KeyConnectorService
) {
super(router);
}
Expand Down
5 changes: 1 addition & 4 deletions angular/src/guards/lock.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ import { BaseGuard } from "./base.guard";
export class LockGuard extends BaseGuard implements CanActivate {
protected homepage = "vault";
protected loginpage = "login";
constructor(
private authService: AuthService,
router: Router,
) {
constructor(private authService: AuthService, router: Router) {
super(router);
}

Expand Down
5 changes: 1 addition & 4 deletions angular/src/guards/unauth.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ import { BaseGuard as BaseGuard } from "./base.guard";
@Injectable()
export class UnauthGuard extends BaseGuard implements CanActivate {
protected homepage = "vault";
constructor(
private authService: AuthService,
router: Router,
) {
constructor(private authService: AuthService, router: Router) {
super(router);
}

Expand Down

0 comments on commit 5bdf7dd

Please sign in to comment.