From aff9d64eb522e281b2225655c83678d538f9e914 Mon Sep 17 00:00:00 2001 From: sellnat77 Date: Sun, 1 Mar 2020 21:41:27 -0800 Subject: [PATCH] Chrome doesnt like mixed content, must serve https --- src/redux/rootSaga.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redux/rootSaga.js b/src/redux/rootSaga.js index 7a457ec48..671425ed2 100644 --- a/src/redux/rootSaga.js +++ b/src/redux/rootSaga.js @@ -11,7 +11,7 @@ import { getDataFailure, } from './reducers/data'; -const pinUrl = `http://${process.env.DB_URL}/pins/`; +const pinUrl = `https://${process.env.DB_URL}/pins`; const getState = (state, slice) => state[slice]; function* getData() {