diff --git a/.changeset/clever-bobcats-clean.md b/.changeset/clever-bobcats-clean.md new file mode 100644 index 0000000000..66e8d3307d --- /dev/null +++ b/.changeset/clever-bobcats-clean.md @@ -0,0 +1,5 @@ +--- +"medusa-react": patch +--- + +fix(react): export product-categories store hooks diff --git a/packages/medusa-react/src/hooks/store/index.ts b/packages/medusa-react/src/hooks/store/index.ts index 73ee63a80c..7111248ac9 100644 --- a/packages/medusa-react/src/hooks/store/index.ts +++ b/packages/medusa-react/src/hooks/store/index.ts @@ -6,6 +6,7 @@ export * from "./line-items/" export * from "./order-edits" export * from "./orders/" export * from "./payment-collections" +export * from "./product-categories" export * from "./product-tags" export * from "./product-types/" export * from "./products/" diff --git a/packages/medusa-react/src/hooks/store/product-categories/index.ts b/packages/medusa-react/src/hooks/store/product-categories/index.ts index e69de29bb2..f3593df2df 100644 --- a/packages/medusa-react/src/hooks/store/product-categories/index.ts +++ b/packages/medusa-react/src/hooks/store/product-categories/index.ts @@ -0,0 +1 @@ +export * from "./queries"