diff --git a/Makefile b/Makefile index 6fed25bde..d8f577aeb 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,10 @@ build: @make webpack clean: - rm -rf ./build - rm -rf ./intl mkdir -p build + rm -rf ./build/* mkdir -p intl + rm -rf ./intl/* deploy: @make build @@ -70,7 +70,7 @@ integration: smoke: $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 - + smoke-verbose: $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec diff --git a/docker-compose.yml b/docker-compose.yml index 2358167b3..f86532955 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -14,7 +14,7 @@ services: hostname: scratch-www-app environment: - API_HOST=http://localhost:8491 - - FALLBACK=http://localhost:8080 + - FALLBACK=http://scratchr2-app:8080 - USE_DOCKER_WATCHOPTIONS=true build: context: ./ diff --git a/src/redux/preview.js b/src/redux/preview.js index 1cdddc493..7e2c328ed 100644 --- a/src/redux/preview.js +++ b/src/redux/preview.js @@ -404,7 +404,7 @@ module.exports.getProjectStudios = id => (dispatch => { }); }); -module.exports.getCuratedStudios = (username) => (dispatch => { +module.exports.getCuratedStudios = username => (dispatch => { dispatch(module.exports.setFetchStatus('curatedStudios', module.exports.Status.FETCHING)); api({ uri: `/users/${username}/studios/curate`