From 4be171c0a766782a1225ac1c7313f6de2850e140 Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Fri, 8 May 2026 12:43:16 +0530 Subject: [PATCH] feat: hide Billings & Payments tab in profile settings screen --- .../profile/presentation/screens/profile_settings_screen.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/features/profile/presentation/screens/profile_settings_screen.dart b/lib/features/profile/presentation/screens/profile_settings_screen.dart index c9fbe9c..a848ca0 100644 --- a/lib/features/profile/presentation/screens/profile_settings_screen.dart +++ b/lib/features/profile/presentation/screens/profile_settings_screen.dart @@ -34,8 +34,7 @@ class _ProfileSettingsScreenState extends ConsumerState { _TabItem(label: 'Privacy', icon: Icons.shield_outlined), ]); if (isAgent) { - tabs.add( - _TabItem(label: 'Billings & Payments', icon: Icons.payment_outlined)); + // 'Billings & Payments' tab is hidden for now. tabs.add( _TabItem(label: 'Add Testimonials', icon: Icons.rate_review_outlined)); }