We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed53710 commit 18e167dCopy full SHA for 18e167d
Standalone/src/app/pages/error/error.component.ts
@@ -1,3 +1,4 @@
1
+import { AsyncPipe, NgIf } from '@angular/common';
2
import { Component, OnInit } from '@angular/core';
3
import { Router } from '@angular/router';
4
import { AuthService } from '@auth0/auth0-angular';
@@ -7,7 +8,11 @@ import { takeUntil } from 'rxjs/operators';
7
8
@Component({
9
selector: 'app-error',
10
templateUrl: './error.component.html',
- standalone: true
11
+ standalone: true,
12
+ imports: [
13
+ AsyncPipe,
14
+ NgIf
15
+ ]
16
})
17
export class ErrorComponent implements OnInit {
18
0 commit comments