Skip to content

Commit

Permalink
Triple equals for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
timdorr committed Oct 22, 2017
1 parent becdc6c commit fd3d79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/combineReducers.js
Expand Up @@ -44,7 +44,7 @@ function getUnexpectedStateShapeWarningMessage(inputState, reducers, action, une
unexpectedKeyCache[key] = true
})

if (action && action.type == ActionTypes.REPLACE) return
if (action && action.type === ActionTypes.REPLACE) return

if (unexpectedKeys.length > 0) {
return (
Expand Down

0 comments on commit fd3d79b

Please sign in to comment.