diff --git a/src/app/footer/footer.component.html b/src/app/footer/footer.component.html index 5c852d3b7f777b55ab317e762b7dd79163895ca8..4f8e01ddaac0dd23725794d9ad7bc8fe745cb519 100644 --- a/src/app/footer/footer.component.html +++ b/src/app/footer/footer.component.html @@ -7,10 +7,6 @@ </div> <div class="right"> - <button class="mediationButton" (click)="goToMediation()"> - <img src="/assets/ico/telephone.svg" alt="telephone" /> - Médiation numérique - </button> <a class="metro-link" href="https://www.grandlyon.com" diff --git a/src/app/footer/footer.component.ts b/src/app/footer/footer.component.ts index 61c47fae135598cdc4c5b52699d811749651f7fa..8ea7023ac08a8454656b6faf5409388177d2c891 100644 --- a/src/app/footer/footer.component.ts +++ b/src/app/footer/footer.component.ts @@ -1,15 +1,8 @@ import { Component } from '@angular/core'; -import { Router } from '@angular/router'; @Component({ selector: 'app-footer', templateUrl: './footer.component.html', styleUrls: ['./footer.component.scss'], }) -export class FooterComponent { - constructor(private router: Router) {} - - public goToMediation(): void { - this.router.navigate(['/orientation'], { state: { mediationNumerique: true } }); - } -} +export class FooterComponent {}