Skip to content

Commit 286c0e0

Browse files
dballanceshockey
authored andcommitted
fix: execution error in IE (#4128)
1 parent 7af7121 commit 286c0e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/plugins/auth/reducers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
let { auth, token } = payload
4545
let parsedAuth
4646

47-
auth.token = token
47+
auth.token = Object.assign({}, token)
4848
parsedAuth = fromJS(auth)
4949

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

0 commit comments

Comments
 (0)