From 3f26814f396930c85ea0b1d016c77f10c0603e68 Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Tue, 28 Jun 2022 19:26:59 +0100 Subject: [PATCH] adding external call for preview URL --- packages/frontend-core/src/api/other.js | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/frontend-core/src/api/other.js b/packages/frontend-core/src/api/other.js index e2cd7aac83..384fd5d7a0 100644 --- a/packages/frontend-core/src/api/other.js +++ b/packages/frontend-core/src/api/other.js @@ -61,6 +61,7 @@ export const buildOtherEndpoints = API => ({ checkBetaAccess: async email => { return await API.get({ url: `${process.env.FEATURE_PREVIEW_URL}/api/beta/access?email=${email}`, + external: true, }) }, })