Skip to content

Commit

Permalink
refactor: update order product src
Browse files Browse the repository at this point in the history
  • Loading branch information
groovemen committed Jul 26, 2023
1 parent a7d0e4e commit ef39566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/order/orderCardProduct.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function OrderCardProduct({
<div className="card shadow-xs border p-3 p-md-4 mb-4">
<div className="row border-bottom pb-4">
<div className="col-12 col-md-6 col-lg-2">
<img className="w-100 rounded-3 mb-3 mb-md-0" src={product.thumb_src} alt={product.thumb_alt} />
<img className="w-100 rounded-3 mb-3 mb-md-0" src={`${import.meta.env.BASE_URL}${product.thumb_src}`} alt={product.thumb_alt} />
</div>
<div className="col-12 col-md-6 col-lg-5">
<h5 className="text-base">{product.title}</h5>
Expand Down

0 comments on commit ef39566

Please sign in to comment.