feat: hide Billings & Payments tab in profile settings screen

This commit is contained in:
pradeepkumar
2026-05-08 12:43:16 +05:30
parent 0123998e8d
commit 4be171c0a7

View File

@@ -34,8 +34,7 @@ class _ProfileSettingsScreenState extends ConsumerState<ProfileSettingsScreen> {
_TabItem(label: 'Privacy', icon: Icons.shield_outlined), _TabItem(label: 'Privacy', icon: Icons.shield_outlined),
]); ]);
if (isAgent) { if (isAgent) {
tabs.add( // 'Billings & Payments' tab is hidden for now.
_TabItem(label: 'Billings & Payments', icon: Icons.payment_outlined));
tabs.add( tabs.add(
_TabItem(label: 'Add Testimonials', icon: Icons.rate_review_outlined)); _TabItem(label: 'Add Testimonials', icon: Icons.rate_review_outlined));
} }