From d5361f21209350f8d7bf7c367b544d354643e8db Mon Sep 17 00:00:00 2001
From: abhisheks <abhisheks@consultbop.com>
Date: Fri, 22 Dec 2023 12:34:12 +0530
Subject: [PATCH] refactor: show product price instead of total price in order
 confirmation table

---
 templates/checkout/_partials/order-confirmation-table.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/checkout/_partials/order-confirmation-table.tpl b/templates/checkout/_partials/order-confirmation-table.tpl
index 6212d05..410315c 100644
--- a/templates/checkout/_partials/order-confirmation-table.tpl
+++ b/templates/checkout/_partials/order-confirmation-table.tpl
@@ -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}