diff --git a/lib/utils/services-utils.js b/lib/utils/services-utils.js index 34fd24d0a..e1b0e74e5 100644 --- a/lib/utils/services-utils.js +++ b/lib/utils/services-utils.js @@ -1,10 +1,12 @@ // @flow +const usingCommServicesAccessToken = false; + function handleHTTPResponseError(response: Response): void { if (!response.ok) { const { status, statusText } = response; throw new Error(`Server responded with HTTP ${status}: ${statusText}`); } } -export { handleHTTPResponseError }; +export { handleHTTPResponseError, usingCommServicesAccessToken };