Skip to content

Commit 595ef78

Browse files
committed
Remove unused cookie service
1 parent f758d54 commit 595ef78

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

frontend/src/app/deluxe-user/deluxe-user.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import { Component, NgZone, type OnInit } from '@angular/core'
77
import { UserService } from '../Services/user.service'
88
import { ActivatedRoute, Router } from '@angular/router'
9-
import { CookieService } from 'ngy-cookie'
109
import { ConfigurationService } from '../Services/configuration.service'
1110
import { SocketIoService } from '../Services/socket-io.service'
1211
import { MatIconModule } from '@angular/material/icon'
@@ -29,7 +28,7 @@ export class DeluxeUserComponent implements OnInit {
2928
public applicationName = 'OWASP Juice Shop'
3029
public logoSrc: string = 'assets/public/images/JuiceShop_Logo.png'
3130

32-
constructor (private readonly router: Router, private readonly userService: UserService, private readonly cookieService: CookieService, private readonly configurationService: ConfigurationService, private readonly route: ActivatedRoute, private readonly ngZone: NgZone, private readonly io: SocketIoService) {
31+
constructor (private readonly router: Router, private readonly userService: UserService, private readonly configurationService: ConfigurationService, private readonly route: ActivatedRoute, private readonly ngZone: NgZone, private readonly io: SocketIoService) {
3332
}
3433

3534
ngOnInit (): void {

0 commit comments

Comments
 (0)