From d21721cd768b7b1e8baa71f8a1c19d2001c7637a Mon Sep 17 00:00:00 2001 From: ramram1515 Date: Wed, 8 Jul 2026 11:23:45 +0800 Subject: [PATCH] Update capacity label to QRs --- lib/src/ui/home/home_screen.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()), ], ),