Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
response comment
  • Loading branch information
actionanand committed Sep 27, 2024
commit e024c30ae6acb9f2580ccf7538f05b71743870d1
2 changes: 1 addition & 1 deletion src/app/services/places.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class PlacesService {
private fetchPlaces(url: string, errMsg: string) {
return this.http
.get<{ places: Place[] }>(url, {
observe: 'response',
observe: 'response', // it'll give full response including status code
})
.pipe(
tap(rawResp => {
Expand Down