summaryrefslogtreecommitdiff
path: root/src-migrate/modules/product-detail/components/ProductDetail.tsx
diff options
context:
space:
mode:
authorMiqdad <ahmadmiqdad27@gmail.com>2025-08-26 15:38:29 +0700
committerMiqdad <ahmadmiqdad27@gmail.com>2025-08-26 15:38:29 +0700
commit37bda78dec58cb8c218849a77620d95682b201b9 (patch)
treecdcddc01583634a4466350c9600d597e422ae35a /src-migrate/modules/product-detail/components/ProductDetail.tsx
parenta078561462fb33f24d838c974894b3fc7d6c9eb7 (diff)
<Miqdad> Major Fix
Diffstat (limited to 'src-migrate/modules/product-detail/components/ProductDetail.tsx')
-rw-r--r--src-migrate/modules/product-detail/components/ProductDetail.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src-migrate/modules/product-detail/components/ProductDetail.tsx b/src-migrate/modules/product-detail/components/ProductDetail.tsx
index 35df97df..79921e22 100644
--- a/src-migrate/modules/product-detail/components/ProductDetail.tsx
+++ b/src-migrate/modules/product-detail/components/ProductDetail.tsx
@@ -161,7 +161,7 @@ return (
<img
src={img}
alt={`Gambar ${i + 1}`}
- className='w-[80%] aspect-square object-contain'
+ className='w-[85%] aspect-square object-contain'
onError={(e) => {
(e.target as HTMLImageElement).src =
'/path/to/fallback-image.jpg';
@@ -174,7 +174,7 @@ return (
<img
src={mainImage || '/path/to/fallback-image.jpg'}
alt='Gambar produk'
- className='w-[80%] aspect-square object-contain'
+ className='w-[85%] aspect-square object-contain'
/>
</div>
)}