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
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

View file

@ -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: ./

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));
api({
uri: `/users/${username}/studios/curate`