|
@@ -194,8 +194,8 @@ const SideCart = ({ open, onClose }) => {
|
194
|
194
|
<Typography variant="body1" sx={{ fontWeight: "400" }}>Taxes</Typography>
|
195
|
195
|
<Typography variant="body1" sx={{ fontWeight: "400" }}>
|
196
|
196
|
{`
|
197
|
|
- ${cart?.cost?.totalTaxAmount?.currencyCode}
|
198
|
|
- ${parseFloat(cart?.cost?.totalTaxAmount?.amount).toFixed(2)}
|
|
197
|
+ ${cart?.cost?.totalTaxAmount?.currencyCode || ""}
|
|
198
|
+ ${parseFloat(cart?.cost?.totalTaxAmount?.amount || 0).toFixed(2)}
|
199
|
199
|
`}
|
200
|
200
|
</Typography>
|
201
|
201
|
</Box>
|