From d62f12c9d996cbe2a014bc17f2a6c9d1b18484df Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 14 Nov 2024 17:31:23 -0500 Subject: [PATCH] Nick: moved away from axios --- apps/api/src/search/fireEngine.ts | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/apps/api/src/search/fireEngine.ts b/apps/api/src/search/fireEngine.ts index 361a9ebc..7439fcf0 100644 --- a/apps/api/src/search/fireEngine.ts +++ b/apps/api/src/search/fireEngine.ts @@ -1,4 +1,3 @@ -import axios from "axios"; import dotenv from "dotenv"; import { SearchResult } from "../../src/lib/entities"; import * as Sentry from "@sentry/node"; @@ -37,18 +36,18 @@ export async function fireEngineMap( return []; } - let config = { + const response = await fetch(`${process.env.FIRE_ENGINE_BETA_URL}/search`, { method: "POST", - url: `${process.env.FIRE_ENGINE_BETA_URL}/search`, headers: { "Content-Type": "application/json", "X-Disable-Cache": "true" }, - data: data, - }; - const response = await axios(config); - if (response && response.data) { - return response.data; + body: data + }); + + if (response.ok) { + const responseData = await response.json(); + return responseData; } else { return []; }