From a7d7b2aba9f7d4795f949cd0df0174c541510c5f Mon Sep 17 00:00:00 2001 From: Alexis Tyler Date: Sun, 4 Oct 2020 13:57:15 +1030 Subject: [PATCH] fix: include fetch import --- app/utils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/utils.ts b/app/utils.ts index 137b876ae..3b2ae0987 100644 --- a/app/utils.ts +++ b/app/utils.ts @@ -1,6 +1,7 @@ import * as Sentry from '@sentry/node'; import { MOTHERSHIP_GRAPHQL_LINK } from './consts'; import { CachedServer } from './cache'; +import fetch from 'cross-fetch'; export const getServers = (apiKey: string) => fetch(MOTHERSHIP_GRAPHQL_LINK, { method: 'POST',