Skip to content

Commit

Permalink
phone catalog with node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
mixelio committed Sep 22, 2024
1 parent 7ea8b4b commit 0ab8d81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/CartUnit/CartUnit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const CartUnit: React.FC<Props> = ({ product }) => {
onClick={() => removeFromCart(product)}
></button>
<div className="cart-unit__sub-item cart-unit__image-container">
<img src={`.${product.images[0]}`} alt="" className="cart-unit__image" />
<img src={`${product.images[0]}`} alt="" className="cart-unit__image" />
</div>
<p className="cart-unit__sub-item cart-unit__name">{product.name}</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/Footer.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
height: 32px;
border: 1px solid $secondary-gray;

background-image: url('../../img/Buttons/Icons/Arrow-Right.svg');
background-image: url('../img/Buttons/Icons/Arrow-Right.svg');
background-position: center;
background-repeat: no-repeat;
background-size: 16px;
Expand Down

0 comments on commit 0ab8d81

Please sign in to comment.