Skip to content

Commit

Permalink
fix: execution error in IE (swagger-api#4128)
Browse files Browse the repository at this point in the history
  • Loading branch information
dballance authored and shockey committed Jan 19, 2018
1 parent 7af7121 commit 286c0e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/plugins/auth/reducers.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default {
let { auth, token } = payload
let parsedAuth

auth.token = token
auth.token = Object.assign({}, token)
parsedAuth = fromJS(auth)

return state.setIn( [ "authorized", parsedAuth.get("name") ], parsedAuth )
Expand Down

0 comments on commit 286c0e0

Please sign in to comment.