Aashish Kumar
Results
2
issues of
Aashish Kumar
``` switchMap(user => { if (user) { return this.afs.doc(`users/${user.uid}`).valueChanges(); } else { return of(null); } }) ``` This function in the `auth.service.ts` constructor, is giving the following error during compilation:...
I'm building a digit recogniser using Convolutional neural networks, and i intend to use the image in the drawing board and convert it to an rgb array, how can i...