hey-pharmacist-ecommerce 1.1.9 → 1.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hey-pharmacist-ecommerce",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "Production-ready, multi-tenant e‑commerce UI + API adapter for Next.js with auth, carts, checkout, orders, theming, and pharmacist-focused UX.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -1027,8 +1027,7 @@ export function ShopScreen({ initialFilters = {}, categoryName }: ShopScreenProp
1027
1027
  <ProductCard
1028
1028
  product={product}
1029
1029
  onClickProduct={(item) => {
1030
- const productData = encodeURIComponent(JSON.stringify(item));
1031
- router.push(buildPath(`/products/${item.id}?product=${productData}`));
1030
+ router.push(buildPath(`/products/${item.id}`));
1032
1031
  }}
1033
1032
  />
1034
1033
  </div>