angular-basics-seed icon indicating copy to clipboard operation
angular-basics-seed copied to clipboard

Angular Basics (v15) Course Seed Project

Results 3 angular-basics-seed issues
Sort by recently updated
recently updated
newest added
trafficstars

In the Angular Basics (v15) videos the components are scaffolded without an `app-` prefix but the project seed repo makes use of one. This took me some time to figure...

Actually, retryWhen is deprecated. https://rxjs.dev/api/operators/retryWhen ```ts read(): Observable { return this.donuts.length ? of(this.donuts) : this.httpClient .get(`/api/donuts`) .pipe( tap(donuts => this.donuts = donuts), retry({count: 10, delay: 5000}), // use this operator...