@@ -70,7 +70,7 @@ import { Auth, User, user } from '@angular/fire/auth';
70
70
...
71
71
72
72
export class UserComponent implements OnDestroy {
73
- private auth: Auth = inject (auth );
73
+ private auth: Auth = inject (Auth );
74
74
user$ = user (auth );
75
75
userSubscription: Subscription ;
76
76
...
@@ -100,7 +100,7 @@ import { Auth, authState } from '@angular/fire/auth';
100
100
...
101
101
102
102
export class UserComponent implements OnDestroy {
103
- private auth: Auth = inject (auth );
103
+ private auth: Auth = inject (Auth );
104
104
authState$ = authState (auth );
105
105
authStateSubscription: Subscription ;
106
106
...
@@ -129,7 +129,7 @@ import { Auth, idToken } from '@angular/fire/auth';
129
129
...
130
130
131
131
export class UserComponent implements OnDestroy {
132
- private auth: Auth = inject (auth );
132
+ private auth: Auth = inject (Auth );
133
133
idToken$ = idToken (auth );
134
134
idTokenSubscription: Subscription ;
135
135
...
@@ -148,7 +148,7 @@ export class UserComponent implements OnDestroy {
148
148
}
149
149
```
150
150
151
- ## Connecting the the emulator suite
151
+ ## Connecting the emulator suite
152
152
153
153
``` ts
154
154
import { connectAuthEmulator , getAuth , provideAuth } from ' @angular/fire/auth' ;
@@ -162,4 +162,4 @@ import { connectAuthEmulator, getAuth, provideAuth } from '@angular/fire/auth';
162
162
}),
163
163
]
164
164
})
165
- ```
165
+ ```
0 commit comments