Skip to content

Commit 23127c6

Browse files
Update README.md
1 parent f862f68 commit 23127c6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,8 @@ Take a look at the three effects here:
2929
dbCloseSocket$ = this.action$
3030
.ofType(MainActionTypes.CLOSE_DB_SOCKET_BEGIN)
3131
.mergeMap((g) => {
32-
33-
console.log('going: ');
3432
return Observable.of(this.dbSocket.$ref.off())
3533
.flatMap(payload => {
36-
// console.log('got this: ' + JSON.stringify(payload));
3734
return Observable.of(new CloseDbSocketSuccess())
3835
})
3936
});
@@ -51,8 +48,6 @@ Take a look at the three effects here:
5148
signOut$ = this.action$
5249
.ofType(MainActionTypes.SIGN_OUT_BEGIN)
5350
.mergeMap((g) => {
54-
55-
console.log('going: ');
5651
return Observable.fromPromise(this.af.auth.logout())
5752
.flatMap(payload => {
5853
return Observable.of(new SignOutSuccess())

0 commit comments

Comments
 (0)