1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Fix failing linter tests (#5257)

Wonder how that one got through 🤔
This commit is contained in:
Henrik Wenz 2018-09-22 19:41:07 +00:00 committed by Tim Neutkens
parent 5276734535
commit 2c0ff4b925

View file

@ -8,7 +8,7 @@ const DEFAULT_STATE = {version: 1}
const {actionCreator, getState: getAboutState} = namespaceConfig('about', DEFAULT_STATE)
const bumpVersion = actionCreator('bumpVersion', function(state, increment) {
const bumpVersion = actionCreator('bumpVersion', function (state, increment) {
return {...state, version: state.version + increment}
})