diff --git a/src/app/pages/404.component.html b/src/app/pages/404.component.html index e76245d..cd46b4d 100644 --- a/src/app/pages/404.component.html +++ b/src/app/pages/404.component.html @@ -7,9 +7,9 @@

Oops! You're lost.

The page you are looking for was not found.

- - - + + + diff --git a/src/app/pages/404.component.ts b/src/app/pages/404.component.ts index 0e91023..b309577 100644 --- a/src/app/pages/404.component.ts +++ b/src/app/pages/404.component.ts @@ -7,11 +7,10 @@ import { Location } from '@angular/common'; export class P404Component { constructor( - private location: Location - ) { - } + private location: Location, + ) { } - goBack(): void { - this.location.back(); -} + goBack(): void { + this.location.back(); + } }