We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa973e commit 240dbf0Copy full SHA for 240dbf0
src/actions/requestLibraryActions.js
@@ -28,7 +28,7 @@ const receiveLibrary = (items) => {
28
const fetchLibrary = (id) => {
29
return dispatch => {
30
dispatch(requestLibrary())
31
- return fetch(`http://demo5895613.mockable.io/library/js/${id}`)
+ return fetch(`https://demo5895613.mockable.io/library/js/${id}`)
32
.then(response => response.json())
33
.then(items => dispatch(receiveLibrary(items)))
34
}
0 commit comments