Skip to content

Commit

Permalink
fix(stores): wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
logustra committed Mar 10, 2021
1 parent 4e789fc commit a19e604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const domainStoreFiles = require.context('./modules', true, /store.tsx/)

domainStoreFiles.keys().map((item: string) => {
for (const key in domainStoreFiles(item)) {
globalStores[key] = domainStoreFiles(item)[key]
domainStores[key] = domainStoreFiles(item)[key]
}
})

Expand Down

0 comments on commit a19e604

Please # to comment.