Skip to content

Commit

Permalink
fix: rename xarcReduxStore to store (#1582)
Browse files Browse the repository at this point in the history
  • Loading branch information
jchip authored Apr 2, 2020
1 parent 84ec240 commit d21109d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/subapp-pbundle/src/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ function setStoreContainer(container) {
}

function setSharedStore(store, container) {
(container || shared).xarcReduxStore = store;
(container || shared).store = store;
}

function getSharedStore(container) {
return (container || shared).xarcReduxStore;
return (container || shared).store;
}

function clearSharedStore(container) {
Expand Down

0 comments on commit d21109d

Please sign in to comment.