Skip to content

Commit 7f7eca9

Browse files
jamesdanielsdavideast
authored andcommitted
Removed two more remaining references to afAuth$
1 parent 2d3dd0a commit 7f7eca9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/Auth-with-Ionic2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ export class AuthService {
273273

274274
constructor(public afAuth: AngularFireAuth) {
275275
this.authState = afAuth.authState;
276-
afAuth$.subscribe((user: firebase.User) => {
276+
afAuth.subscribe((user: firebase.User) => {
277277
this.currentUser = user;
278278
});
279279
}
@@ -483,7 +483,7 @@ export class AuthService {
483483

484484
constructor(public afAuth: AngularFireAuth) {
485485
this.authState = afAuth.authState;
486-
afAuth$.subscribe((user: firebase.User) => {
486+
afAuth.subscribe((user: firebase.User) => {
487487
this.currentUser = user;
488488
});
489489
}

0 commit comments

Comments
 (0)