We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13dbf33 commit 08d1ee6Copy full SHA for 08d1ee6
3 files changed
components/Header.tsx
@@ -49,6 +49,8 @@ const Header = () => {
49
slug:string
50
stockAvailabillity: number;
51
}[] = [];
52
+
53
+ return; // temporary disable wishlist fetching while the issue is being resolved
54
55
wishlist.map((item: any) => productArray.push({id: item?.product?.id, title: item?.product?.title, price: item?.product?.price, image: item?.product?.mainImage, slug: item?.product?.slug, stockAvailabillity: item?.product?.inStock}));
56
0 commit comments