diff --git a/lib/src/ui/home/home_screen.dart b/lib/src/ui/home/home_screen.dart index e9cbc17..6aee5fc 100644 --- a/lib/src/ui/home/home_screen.dart +++ b/lib/src/ui/home/home_screen.dart @@ -155,7 +155,7 @@ class ScannerCrewTab extends ConsumerWidget { children: [ _InfoRow(label: 'Plate Number', value: truck.plateNumber), _InfoRow(label: 'Model', value: truck.model ?? 'N/A'), - _InfoRow(label: 'Capacity', value: '${truck.capacityKg} kg'), + _InfoRow(label: 'Capacity', value: '${truck.capacityKg} QRs'), _InfoRow(label: 'Status', value: truck.status.toUpperCase()), ], ),