diff --git a/packages/hoppscotch-common/src/helpers/kernel/common/content.ts b/packages/hoppscotch-common/src/helpers/kernel/common/content.ts index f80b5f4c..c4e5cc33 100644 --- a/packages/hoppscotch-common/src/helpers/kernel/common/content.ts +++ b/packages/hoppscotch-common/src/helpers/kernel/common/content.ts @@ -12,7 +12,7 @@ const Processors = { process: (body: string): E.Either => pipe( parseJSONAs(body), - E.map((json) => content.json(json, MediaType.APPLICATION_JSON)), + E.map(() => content.text(body, MediaType.APPLICATION_JSON)), E.orElse(() => E.right(content.text(body, MediaType.TEXT_PLAIN))) ), },