diff --git a/src/pages/admin/AdminProducts.tsx b/src/pages/admin/AdminProducts.tsx
index 7b2981f..34f84b6 100644
--- a/src/pages/admin/AdminProducts.tsx
+++ b/src/pages/admin/AdminProducts.tsx
@@ -218,47 +218,45 @@ export default function AdminProducts() {
{/* Mobile Card Layout */}
-
+
{products.map((product) => (
-
-
-
-
-
{product.title}
-
{product.type}
-
-
-
-
+
+
+
+
{product.title}
+
{product.type}
+
+
+
+
+
+
+
+
+
Harga:
+
+ {product.sale_price ? (
+
+ {formatIDR(product.sale_price)}
+ {formatIDR(product.price)}
+
+ ) : (
+
{formatIDR(product.price)}
+ )}
-
-
-
Harga:
-
- {product.sale_price ? (
-
- {formatIDR(product.sale_price)}
- {formatIDR(product.price)}
-
- ) : (
-
{formatIDR(product.price)}
- )}
-
-
-
- Status:
-
- {product.is_active ? 'Aktif' : 'Nonaktif'}
-
-
+
+ Status:
+
+ {product.is_active ? 'Aktif' : 'Nonaktif'}
+
-
-
+
+
))}
{products.length === 0 && (