We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b83fb83 commit e024c30Copy full SHA for e024c30
src/app/services/places.service.ts
@@ -35,7 +35,7 @@ export class PlacesService {
35
private fetchPlaces(url: string, errMsg: string) {
36
return this.http
37
.get<{ places: Place[] }>(url, {
38
- observe: 'response',
+ observe: 'response', // it'll give full response including status code
39
})
40
.pipe(
41
tap(rawResp => {
0 commit comments