From 7eba04ba8130ee82c34d4c16e353483a98082ff8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=AD=D8=B3=DB=8C=D9=86=20=D9=85=D8=B9=D8=B5=D9=88=D9=85?= =?UTF-8?q?=DB=8C=20=D9=BE=D9=88=D8=B1?= Date: Wed, 19 Feb 2025 12:35:54 +0330 Subject: [PATCH] change products landing --- components/AppsComponent/RootData/page.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/AppsComponent/RootData/page.jsx b/components/AppsComponent/RootData/page.jsx index f7b3208..6a5a5c0 100644 --- a/components/AppsComponent/RootData/page.jsx +++ b/components/AppsComponent/RootData/page.jsx @@ -449,7 +449,7 @@ const RootData = ({ children }) => { const fetchCosmetic = async () => { const res = await fetch( - `${process.env.NEXT_PUBLIC_API_URL}/product?page=0&categoryId=553af942-7a14-4757-9a03-a3ebec6c865a` + `${process.env.NEXT_PUBLIC_API_URL}/product?page=0&categoryId=553af942-7a14-4757-9a03-a3ebec6c865a&brandIds=e80181ef-d91d-4072-aff3-be2fbb00c0eb` ); const Cosmetic = await res.json(); setCosmeticData(Cosmetic); @@ -465,7 +465,7 @@ const RootData = ({ children }) => { const fetchEyeCosmetic = async () => { const res = await fetch( - `${process.env.NEXT_PUBLIC_API_URL}/product?page=0&categoryId=2e11e55c-0941-49f8-9d22-dfa21088f639` + `${process.env.NEXT_PUBLIC_API_URL}/product?page=0&categoryId=2e11e55c-0941-49f8-9d22-dfa21088f639&brandIds=e80181ef-d91d-4072-aff3-be2fbb00c0eb` ); const eyeCosmetic = await res.json(); setEyeCosmeticData(eyeCosmetic);