Skip to content

Commit

Permalink
Use const instead of let
Browse files Browse the repository at this point in the history
  • Loading branch information
jgreben committed May 7, 2019
1 parent 0fe08f0 commit deb1ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reducers/inputs.js
Expand Up @@ -37,7 +37,7 @@ export const setMyItems = (state, action) => {
}

export const setMySelections = (state, action) => {
let newState = Object.assign({}, state)
const newState = Object.assign({}, state)
const reduxPath = action.payload.reduxPath
let level = 0
reduxPath.reduce((obj, key) => {
Expand Down

0 comments on commit deb1ad9

Please sign in to comment.