File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff 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())
You can’t perform that action at this time.
0 commit comments