diff --git a/frontend/src/app/feature/home/home.component.html b/frontend/src/app/feature/home/home.component.html index fb2424a..e2521d9 100644 --- a/frontend/src/app/feature/home/home.component.html +++ b/frontend/src/app/feature/home/home.component.html @@ -85,7 +85,7 @@
diff --git a/frontend/src/app/shared/components/confirmation/confirmation.component.ts b/frontend/src/app/shared/components/confirmation/confirmation.component.ts index d407985..a310f05 100644 --- a/frontend/src/app/shared/components/confirmation/confirmation.component.ts +++ b/frontend/src/app/shared/components/confirmation/confirmation.component.ts @@ -19,11 +19,11 @@ import gsap from 'gsap'; }) export class ConfirmationComponent implements AfterViewInit, OnDestroy { @Input() successful = true; - @Output() close = new EventEmitter(); + @Output() closeConfirmation = new EventEmitter(); @ViewChild('modalBg') modalBg!: ElementRef; @ViewChild('modalCard') modalCard!: ElementRef; - constructor(private modalAnimationService: ModalAnimationService) {} + constructor(private modalAnimationService: ModalAnimationService) { } ngAfterViewInit() { if (this.successful) { @@ -43,7 +43,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy { this.modalAnimationService.closeModal( this.modalCard.nativeElement, this.modalBg.nativeElement, - () => this.close.emit() + () => this.closeConfirmation.emit() ); } }