Skip to content

Commit

Permalink
Fixed let to const.
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Nov 2, 2019
1 parent 92fcc37 commit f934795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/reducers/windows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function windows(reducer: ActionReducer<any>) {
return function(state = initialState, action: any) {

const _state = Object.assign({}, state);
let _windowState = _state[action.windowId];
const _windowState = _state[action.windowId];

switch (action.type) {
case windowsActions.ADD_WINDOW:
Expand Down

0 comments on commit f934795

Please sign in to comment.