We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a108ff7 commit 571de12Copy full SHA for 571de12
components/Cart/Cart.component.jsx
@@ -9,7 +9,7 @@ import { AppContext } from 'utils/context/AppContext';
9
* Currently only displays a sample cart.
10
* Displays amount of items in cart.
11
*/
12
-const Cart = () => {
+const Cart = () => {
13
const [cart, setCart] = useContext(AppContext);
14
15
const productsCount =
components/Product/SingleProduct.component.jsx
@@ -89,9 +89,9 @@ const SingleProduct = ({ product }) => {
89
<option value="sort">Large</option>
90
</select>
91
</p>
92
- <p className="pt-1 mt-2">
+ <div className="pt-1 mt-2">
93
<AddToCartButton product={product} />
94
- </p>
+ </div>
95
</div>
96
97
0 commit comments