Skip to content

Commit

Permalink
refactor(com-pwa): order storage path (#1109)
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd authored May 2, 2023
2 parents c68b250 + 8d68b95 commit e71fb47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uniquely/com-api/src/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const config = {
userStorageName: 'private/user-list',
productStoragePrefix: 'public/product-list-',
priceStoragePrefix: 'public/price-list-',
orderStoragePrefix: 'public/order-list-',
orderStoragePrefix: 'public/order-list/',
} as const;

logger.logProperty?.('config', config);
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ orderStorageContextConsumer.fsm.defineSignals([
signalId: userProfileContextConsumer.id,
callback: (user: ComUser): void => {
orderStorageContextConsumer.request({
url: config.api + '/storage/order-list-' + user.id,
url: config.api + '/storage/order-list/' + user.id,
});
},
receivePrevious: 'NextCycle',
Expand Down

0 comments on commit e71fb47

Please sign in to comment.