redux-tiny-router icon indicating copy to clipboard operation
redux-tiny-router copied to clipboard

TypeError: setting a property that has only a getter

Open approots opened this issue 9 years ago • 0 comments

There is an error that prevents rendering using Firefox 42 on Windows 7:

TypeError: setting a property that has only a getter

The error occurs on line 28 of enhancer/enhancer.js:

Object.assign(reducer,tinyReducer,reducer);

I can fix the error by changing that line to:

Object.assign(reducer,tinyReducer);

approots avatar Nov 12 '15 17:11 approots