Skip to content

Commit

Permalink
Update orderProductRow.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
groovemen committed Jul 26, 2023
1 parent bf3de95 commit a7d0e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/order/orderProductRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function OrderSummary({
<>
<tr>
<td scope="row" className="d-flex align-items-center text-sm text-body py-3">
<img className="w-20 w-lg-10 rounded-3" src={product.thumb_src} alt={product.thumb_alt} />
<img className="w-20 w-lg-10 rounded-3" src={`${import.meta.env.BASE_URL}${product.thumb_src}`} alt={product.thumb_alt} />
<p className="text-sm text-dark font-weight-bold mb-0 ms-3">{product.title}</p>
</td>
<td className="text-sm text-body align-middle pt-3 w-20">${product.price.toLocaleString()}</td>
Expand Down

0 comments on commit a7d0e4e

Please sign in to comment.