CSR-297 change to const

This commit is contained in:
CarlNation 2022-03-01 11:52:17 -05:00
parent 97403cbb8b
commit 2fe651c474

View file

@ -5,7 +5,7 @@ import httpStatusCodes from "http-status-codes";
export default {
callHttpClient({ method, endpoint, payload }) {
return new Promise((resolve, reject) => {
var apiGatewayUrl = applicationConfig.CONSUMER_APIGATEWAY_URL;
const apiGatewayUrl = applicationConfig.CONSUMER_APIGATEWAY_URL;
const payloadAndAnalyticsData = Object.assign({}, payload, {
AppName: "FixMyGlass",
});