angular-basics-seed
angular-basics-seed copied to clipboard
Angular Basics (v15) Course Seed Project
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...