refactor: show product price instead of total price in order confirmation table

staging
abhisheks 2023-12-22 12:34:12 +05:30
parent 2e2c0259e9
commit d5361f2120
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@
</div>
<div class="w-1/3 md:w-1/6 max-md:hidden font-semibold text-lg pt-4">{$product.price}</div>
<div class="w-1/3 md:w-1/6 text-center font-semibold text-lg pt-4">{$product.quantity}</div>
<div class="w-1/3 md:w-1/6 text-right font-bold text-lg pt-4">{$product.total}</div>
<div class="w-1/3 md:w-1/6 text-right font-bold text-lg pt-4">{$product.price}</div>
</div>
{/foreach}