diff --git a/index.html b/index.html
index e8f6205..ac95523 100644
--- a/index.html
+++ b/index.html
@@ -21,11 +21,6 @@
{{ product }}
In Stock
Out of Stock
-
-
-
diff --git a/main.js b/main.js
index 61a0b2e..1725ec2 100644
--- a/main.js
+++ b/main.js
@@ -4,10 +4,7 @@ const app = Vue.createApp({
product: 'Socks',
image: './assets/images/socks_blue.jpg',
inStock: true,
- details: ['50% cotton', '30% wool', '20% polyester'],
- // solution
- sizes: ['S', 'M', 'L', 'XL', 'XXL']
- // solution
+ details: ['50% cotton', '30% wool', '20% polyester']
}
}
})