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
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:
parent
d9617b6957
commit
48fd705288
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user