diff --git a/components/product/vairant-details.tsx b/components/product/vairant-details.tsx
index 6afc8bfed..2824228e2 100644
--- a/components/product/vairant-details.tsx
+++ b/components/product/vairant-details.tsx
@@ -30,12 +30,19 @@ const VariantDetails = ({ variants, defaultPrice }: VariantDetailsProps) => {
{variant?.availableForSale ? (
- In Stock
+ In Stock
) : (
Out of Stock
)}
-
Condition: {variant?.condition || 'N/A'}
+
|
+
+ SKU: {variant?.sku || 'N/A'}
+
+
|
+
+ Condition: {variant?.condition || 'N/A'}
+
);
diff --git a/components/product/variant-selector.tsx b/components/product/variant-selector.tsx
index 1cbc0ffbe..6e05a898d 100644
--- a/components/product/variant-selector.tsx
+++ b/components/product/variant-selector.tsx
@@ -96,7 +96,7 @@ export function VariantSelector({
leaveFrom="opacity-100 backdrop-blur-[.5px]"
leaveTo="opacity-0 backdrop-blur-none"
>
-
+
-
+
Manufactured & Used Options
@@ -209,10 +209,10 @@ export function VariantSelector({
/>
) : null}
-
- {option.name}:
+ SKU:
+
+ {variant?.sku || 'N/A'}
- {value}
{!isAvailableForSale ? Out of Stock : null}