summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-06-21 16:46:24 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-06-21 16:46:24 +0700
commit7afd73bde637528e9427124b6e9842a026f823f6 (patch)
treed8708f49255745819482c9ada20caef36aae92e6 /src/lib
parent8b7db0f3ef5058f6e41996fd162a805ab9147cc6 (diff)
<iman> remove console log
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/product/components/ProductFilterDesktop.jsx1
-rw-r--r--src/lib/product/components/ProductSearch.jsx2
2 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/product/components/ProductFilterDesktop.jsx b/src/lib/product/components/ProductFilterDesktop.jsx
index b4afebc2..b9be7c15 100644
--- a/src/lib/product/components/ProductFilterDesktop.jsx
+++ b/src/lib/product/components/ProductFilterDesktop.jsx
@@ -21,7 +21,6 @@ import Image from '@/core/components/elements/Image/Image'
import { formatCurrency } from '@/core/utils/formatValue'
const ProductFilterDesktop = ({ brands, categories, prefixUrl, defaultBrand = null }) => {
- console.log("prefixUrl",prefixUrl)
const router = useRouter()
const { query } = router
const [order, setOrder] = useState(query?.orderBy)
diff --git a/src/lib/product/components/ProductSearch.jsx b/src/lib/product/components/ProductSearch.jsx
index ec0077c2..08b64c13 100644
--- a/src/lib/product/components/ProductSearch.jsx
+++ b/src/lib/product/components/ProductSearch.jsx
@@ -130,7 +130,6 @@ const ProductSearch = ({
brands.push({ brand, qty });
}
}
- console.log("daftar brand",brands)
const categories = [];
for (
@@ -145,7 +144,6 @@ const ProductSearch = ({
categories.push({ name, qty });
}
}
- console.log("daftar kategori",categories)
const orderOptions = [
{ value: 'price-asc', label: 'Harga Terendah' },