patch reducer compile warnings

This commit is contained in:
sorrelbri 2020-02-07 17:59:28 -08:00
parent 24a8a4e991
commit 401076cd50

View file

@ -30,7 +30,9 @@ export const gamesReducer = (state, action) => {
return {...state, active: action.body};
}
default: return state;
default: {
return state;
}
}
}