summaryrefslogtreecommitdiff
path: root/src/lib/product/components
diff options
context:
space:
mode:
authortrisusilo48 <tri.susilo@altama.co.id>2024-09-11 10:04:09 +0700
committertrisusilo48 <tri.susilo@altama.co.id>2024-09-11 10:04:09 +0700
commit768e5a550c07bdcfb7fda779163458e0c9762902 (patch)
treed44236911d0fea32fa582fb739ebac8ab325a064 /src/lib/product/components
parent1e8959ef719689bc8ddd2477fa12e960f4c9a759 (diff)
parent46faf7e7ba398a4137e93559b2efa5abf3df9663 (diff)
Merge branch 'release' into CR/search_enggine
Diffstat (limited to 'src/lib/product/components')
-rw-r--r--src/lib/product/components/CategorySection.jsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/product/components/CategorySection.jsx b/src/lib/product/components/CategorySection.jsx
index e8ebb095..a287fa78 100644
--- a/src/lib/product/components/CategorySection.jsx
+++ b/src/lib/product/components/CategorySection.jsx
@@ -63,7 +63,7 @@ const CategorySection = ({ categories }) => {
{isMobile && (
<div className="py-4">
<Swiper slidesPerView={2.3} spaceBetween={10}>
- {displayedCategories.map((category) => (
+ {categories.map((category) => (
<SwiperSlide key={category?.id}>
<Link href={createSlug('/shop/category/', category?.name, category?.id)} passHref>
<div className="group transition-colors duration-300">
@@ -74,6 +74,7 @@ const CategorySection = ({ categories }) => {
width={56}
height={48}
alt={category?.name}
+ className="p-3"
/>
<h2 className="text-gray-700 group-hover:text-[#E20613] line-clamp-2 content-center h-fit w-60 px-1 font-semibold text-sm text-start">
{category?.name}
@@ -85,7 +86,7 @@ const CategorySection = ({ categories }) => {
</SwiperSlide>
))}
</Swiper>
- {categories.length > 10 && (
+ {/* {categories.length > 10 && (
<div className="w-full flex justify-end mt-4">
<button
onClick={handleToggleCategories}
@@ -94,7 +95,7 @@ const CategorySection = ({ categories }) => {
{isOpenCategory ? 'Sembunyikan Semua' : 'Lihat Semua'}
</button>
</div>
- )}
+ )} */}
</div>
)}
</section>