Skip to content

Commit 08d1ee6

Browse files
committed
added temporary return in header until wishlist is fixed
1 parent 13dbf33 commit 08d1ee6

File tree

3 files changed

+57
-24
lines changed

3 files changed

+57
-24
lines changed

components/Header.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ const Header = () => {
4949
slug:string
5050
stockAvailabillity: number;
5151
}[] = [];
52+
53+
return; // temporary disable wishlist fetching while the issue is being resolved
5254

5355
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}));
5456

0 commit comments

Comments
 (0)