We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be273c0 commit 3db8972Copy full SHA for 3db8972
packages/node_modules/overmind/src/index.ts
@@ -322,6 +322,10 @@ export class Overmind<Config extends Configuration> implements BaseApp {
322
}
323
private processState(state: {}) {
324
return Object.keys(state).reduce((aggr, key) => {
325
+ if (key === '__esModule') {
326
+ return aggr
327
+ }
328
+
329
const value = state[key]
330
if (isPlainObject(value)) {
331
aggr[key] = this.processState(value)
0 commit comments