corrected parentheses for lint error

This commit is contained in:
Ben Wheeler 2018-07-27 10:49:08 -04:00
parent a60da11f8a
commit 8eec0d3a87
3 changed files with 5 additions and 5 deletions

View file

@ -14,10 +14,10 @@ build:
@make webpack @make webpack
clean: clean:
rm -rf ./build
rm -rf ./intl
mkdir -p build mkdir -p build
rm -rf ./build/*
mkdir -p intl mkdir -p intl
rm -rf ./intl/*
deploy: deploy:
@make build @make build
@ -70,7 +70,7 @@ integration:
smoke: smoke:
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600
smoke-verbose: smoke-verbose:
$(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec

View file

@ -14,7 +14,7 @@ services:
hostname: scratch-www-app hostname: scratch-www-app
environment: environment:
- API_HOST=http://localhost:8491 - API_HOST=http://localhost:8491
- FALLBACK=http://localhost:8080 - FALLBACK=http://scratchr2-app:8080
- USE_DOCKER_WATCHOPTIONS=true - USE_DOCKER_WATCHOPTIONS=true
build: build:
context: ./ context: ./

View file

@ -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)); dispatch(module.exports.setFetchStatus('curatedStudios', module.exports.Status.FETCHING));
api({ api({
uri: `/users/${username}/studios/curate` uri: `/users/${username}/studios/curate`