Update shipping costs label in OrderDetailsDialog for localization support

This commit is contained in:
sebseb7
2025-07-16 13:18:16 +02:00
parent 0895919448
commit 4ef27da561

View File

@@ -142,7 +142,7 @@ const OrderDetailsDialog = ({ open, onClose, order }) => {
</TableRow>
<TableRow>
<TableCell colSpan={2} />
<TableCell align="right">Lieferkosten</TableCell>
<TableCell align="right">{t ? t('cart.summary.shippingCosts') : 'Lieferkosten'}</TableCell>
<TableCell align="right">{currencyFormatter.format(order.delivery_cost)}</TableCell>
</TableRow>
<TableRow>