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 13:51:52 +05:30
parent 18432321b1
commit 27e61b6040

View File

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