We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d57eae commit ef5c6d1Copy full SHA for ef5c6d1
src/components/finance/UnitCharges.tsx
@@ -113,7 +113,7 @@ export const UnitCharges = ({ unitId }: UnitChargesProps) => {
113
Storage: {!!storageTotal && formatCoins(storageTotal)}
114
<Typography variant="h3">Total Charges</Typography>
115
<Typography variant="subtitle1">To be paid by the unit owner</Typography>
116
- Total: {!!totalCharges && formatCoins(totalCharges)}
+ Total: {totalCharges !== undefined && formatCoins(totalCharges)}
117
</Box>
118
</Container>
119
);
0 commit comments