Daniel Bartholomae

Results 105 comments of Daniel Bartholomae

The line with the error is the line that calls your handler, so the error might be related to the handler. Could you please share a small repo with the...

I recently had a similar question (#1140), and there seems to be an environment variable called `_CUSTOM_IMAGE`. I haven't tried it yet, though.

Added @corymhall as API bar raiser

Great! If there is any way I can help, please let me know. In the mean time I will be working on a plugin for [redux beacon](https://github.com/rangle/redux-beacon)

This is how it worked for us: ``` const authModule = { id: 'auth', reducerMap: { auth: persistReducer(createPersistConfig('local_storage_auth'), authReducer) } } export const store = createStore({}, authModule) export const persistor...

No - the first part is in each module, the second part only in the central store creation. Unfortunately I don't have a public example at the moment.

Just stumbled upon the exact same problem. I think this is solvable by allowing to add a reducer in the moduleStoreSettings.

How about adding a reducer to the `moduleStoreSettings` that can act on the overall store state? This would also help with #58 and other cases where enhancers depend on reducers...

We are still using an extension. I'm currently thinking about setting up a redux-first-history extension.

Just to clear two things up: 1. With conventional-commit not all commit messages are used for change logs. E. g. refactorings and style changes are not used. Also a lot...