Skip to content

Commit

Permalink
Merge pull request #354 from hackforla/dev
Browse files Browse the repository at this point in the history
Added http instead of s again
  • Loading branch information
sellnat77 authored Mar 2, 2020
2 parents 17f95c7 + 0f1fd76 commit f5590f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redux/rootSaga.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
getDataFailure,
} from './reducers/data';

const pinUrl = `https://${process.env.DB_URL}/pins`;
const pinUrl = `http://${process.env.DB_URL}/pins`;
const getState = (state, slice) => state[slice];

function* getData() {
Expand Down

0 comments on commit f5590f4

Please sign in to comment.