From 0de9f3d8c3df9d76c7727ec98717dab7709713d6 Mon Sep 17 00:00:00 2001 From: liyasthomas Date: Fri, 3 Dec 2021 20:34:20 +0530 Subject: [PATCH] fix: broken function import --- packages/hoppscotch-app/helpers/RequestRunner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/hoppscotch-app/helpers/RequestRunner.ts b/packages/hoppscotch-app/helpers/RequestRunner.ts index 7b6870235..0aa11181d 100644 --- a/packages/hoppscotch-app/helpers/RequestRunner.ts +++ b/packages/hoppscotch-app/helpers/RequestRunner.ts @@ -5,7 +5,6 @@ import { pipe } from "fp-ts/function" import * as O from "fp-ts/Option" import { runTestScript, TestDescriptor } from "@hoppscotch/js-sandbox" import { isRight } from "fp-ts/Either" -import { isJSONContentType } from "@hoppscotch/data" import { getCombinedEnvVariables, getFinalEnvsFromPreRequest, @@ -14,6 +13,7 @@ import { getEffectiveRESTRequest } from "./utils/EffectiveURL" import { HoppRESTResponse } from "./types/HoppRESTResponse" import { createRESTNetworkRequestStream } from "./network" import { HoppTestData, HoppTestResult } from "./types/HoppTestResult" +import { isJSONContentType } from "./utils/contenttypes" import { getRESTRequest, setRESTTestResults } from "~/newstore/RESTSession" const getTestableBody = (res: HoppRESTResponse & { type: "success" }) => {