mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-26 17:16:11 -05:00
corrected parentheses for lint error
This commit is contained in:
parent
a60da11f8a
commit
8eec0d3a87
3 changed files with 5 additions and 5 deletions
6
Makefile
6
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
|
||||
|
||||
|
|
|
@ -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: ./
|
||||
|
|
|
@ -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`
|
||||
|
|
Loading…
Reference in a new issue