fixed error
Some checks are pending
NPM Installation / build (16.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (16.x, windows-latest) (push) Waiting to run
NPM Installation / build (17.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (17.x, windows-latest) (push) Waiting to run
NPM Installation / build (18.x, ubuntu-latest) (push) Waiting to run
NPM Installation / build (18.x, windows-latest) (push) Waiting to run

This commit is contained in:
ROSHAN GARG 2024-11-22 14:28:52 +05:30
parent 27e61b6040
commit d9617b6957

View File

@ -127,13 +127,13 @@ const OrderConfirmation = ({ orderId, billTo, shipTo, paymentMode, cartItem }) =
<TableRow>
<TableCell colSpan={7} />
<TableCell>
Subtotal:<strong> {subtotaltoFixed(2)}</strong>
Subtotal:<strong> {subtotal.toFixed(2)}</strong>
</TableCell>
</TableRow>
<TableRow>
<TableCell colSpan={7} />
<TableCell>
Total GST:<strong> {totalGSTtoFixed(2)} </strong>
Total GST:<strong> {totalGST.toFixed(2)} </strong>
</TableCell>
</TableRow>