fix(medusa): priced products region_id regression (#13961)

* Correctly destructure query result

* Add changeset
This commit is contained in:
Nicolas Gorga
2025-11-04 16:54:30 -05:00
committed by GitHub
parent 32f9c15b1b
commit 018871f8cd
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"@medusajs/medusa": patch
---
Fix regression preventing region_id to be resolved from store's default region when retrieving priced products
@@ -77,7 +77,7 @@ export function normalizeDataForContext(options: PricingContextOptions = {}) {
// Finally, try to get it from the store defaults if not available
if (!regionId) {
const stores = await refetchEntities({
const { data: stores } = await refetchEntities({
entity: "store",
scope: req.scope,
fields: ["id", "default_region_id"],