diff --git a/packages/bruno-app/src/utils/common/index.js b/packages/bruno-app/src/utils/common/index.js index 443dca66..204cae6b 100644 --- a/packages/bruno-app/src/utils/common/index.js +++ b/packages/bruno-app/src/utils/common/index.js @@ -84,7 +84,7 @@ export const getContentType = (headers) => { export const formatResponse = (response) => { let type = getContentType(response.headers); if (type.includes('json')) { - return safeStringifyJSON(response.data); + return safeStringifyJSON(response.data, true); } if (type.includes('xml')) { return xmlFormat(response.data, { collapseContent: true });