diff --git a/lib/view/finance/payment_request_screen.dart b/lib/view/finance/payment_request_screen.dart index 397d889..57163c8 100644 --- a/lib/view/finance/payment_request_screen.dart +++ b/lib/view/finance/payment_request_screen.dart @@ -327,7 +327,7 @@ class _PaymentRequestMainScreenState extends State Row( children: [ MyText.bodySmall("Payee: ", color: Colors.grey[600]), - MyText.bodyMedium(item.payee, fontWeight: 600), + MyText.bodySmall(item.payee, fontWeight: 600), ], ), const SizedBox(height: 6), @@ -336,7 +336,7 @@ class _PaymentRequestMainScreenState extends State Row( children: [ MyText.bodySmall("Due Date: ", color: Colors.grey[600]), - MyText.bodySmall(dueDate, fontWeight: 500), + MyText.bodySmall(dueDate, fontWeight: 600), ], ), const Spacer(),