Skip to content

Commit

Permalink
Issue #SB-17742 fix: FAQ not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
balakrishna-m committed Feb 7, 2020
1 parent a8d37cd commit 1dd4933
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/faq/handler/get-faq-details-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export class GetFaqDetailsHandler {
return this.apiService.fetch(apiRequest)
.pipe(
map((response) => {
const resp = JSON.parse(response.body.trim());
return resp;
return response.body;
})
);
}
Expand Down

0 comments on commit 1dd4933

Please sign in to comment.