Skip to content

Commit

Permalink
fix(core): Fix edge case with cached tax zone
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Apr 3, 2024
1 parent 33db45d commit e543e5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class ProductPriceApplicator {
const zones = await this.requestCache.get(ctx, 'allZones', () =>
this.zoneService.getAllWithMembers(ctx),
);
const activeTaxZone = await this.requestCache.get(ctx, 'activeTaxZone', () =>
const activeTaxZone = await this.requestCache.get(ctx, 'activeTaxZone-ppa', () =>
taxZoneStrategy.determineTaxZone(ctx, zones, ctx.channel, order),
);
if (!activeTaxZone) {
Expand Down

0 comments on commit e543e5e

Please sign in to comment.