Skip to content

Commit

Permalink
fix: page sleep not working correctly after PR jef#576 merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SesioN committed Oct 23, 2020
1 parent f9c4c25 commit 5f7b5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const list = new Map();

for (const storeData of config.store.stores) {
if (masterList.has(storeData.name)) {
list.set(storeData.name, {...masterList.get(storeData.name), storeData});
list.set(storeData.name, {...masterList.get(storeData.name), ...storeData});
} else {
const logString = `No store named ${storeData.name}, skipping.`;
logger.warn(logString);
Expand Down

0 comments on commit 5f7b5cc

Please sign in to comment.