Client: minor fix

This commit is contained in:
Sam
2018-06-11 19:15:38 +02:00
parent 859f690ba4
commit 489a123671
4 changed files with 6 additions and 6 deletions

View File

@ -109,7 +109,7 @@ const gpx = (state = initial.gpx, action) => {
const loading = (state = initial.loading, action) => {
switch (action.type) {
case 'SET_LOADING':
return !state
return action.loading
default:
return state
}