From 4ffa963e479fd10fdf981b035fa82c63fe4a1f3a Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Sat, 25 Jun 2022 14:47:34 -0500 Subject: [PATCH] fixed baseUrl to use https instead of http --- client/src/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/constants.js b/client/src/constants.js index 5309c57..2c17bc5 100644 --- a/client/src/constants.js +++ b/client/src/constants.js @@ -1,6 +1,6 @@ const baseUrl = process.env.NODE_ENV === 'development' ? '' : - 'http://criminalmindsapi.azurewebsites.net'; + 'https://criminalmindsapi.azurewebsites.net'; const versionHeader = 'x-api-version'; const versionHeaderValue = 1;