fixed error
Some checks failed
NPM Installation / build (16.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (16.x, windows-latest) (push) Has been cancelled
NPM Installation / build (17.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (17.x, windows-latest) (push) Has been cancelled
NPM Installation / build (18.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (18.x, windows-latest) (push) Has been cancelled

This commit is contained in:
ROSHAN GARG 2024-11-22 14:59:23 +05:30
parent d9617b6957
commit 48fd705288
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ const OrderConfirmation = ({ orderId, billTo, shipTo, paymentMode, cartItem }) =
<TableRow>
<TableCell colSpan={7} />
<TableCell>
Grand Total: <strong> {subtotal.toFixed(2) + totalGST.toFixed(2)}</strong>
Grand Total: <strong> {(subtotal + totalGST).toFixed(2)}</strong>
</TableCell>
</TableRow>
</TableBody>

View File

@ -180,7 +180,7 @@ const ReviewOrder = ({
<TableRow>
<TableCell colSpan={7} />
<TableCell>
Grand Total: <strong> {subtotal.toFixed(2) + totalGST.toFixed(2)}</strong>
Grand Total: <strong> {(subtotal + totalGST).toFixed(2)}</strong>
</TableCell>
</TableRow>
</TableBody>