diff --git a/lib/features/agents/presentation/screens/agent_detail_screen.dart b/lib/features/agents/presentation/screens/agent_detail_screen.dart index f78d898..915c26f 100644 --- a/lib/features/agents/presentation/screens/agent_detail_screen.dart +++ b/lib/features/agents/presentation/screens/agent_detail_screen.dart @@ -838,10 +838,6 @@ class _AgentDetailScreenState extends ConsumerState { _buildExperienceItem(state.contractsClosedLabel, [ state.contractsClosed, ]), - // Licensing Areas (always show) - state.licensingAreas.isNotEmpty - ? _buildLicensingAreas(state.licensingAreas, state.licensingAreasLabel) - : _buildEmptySection(state.licensingAreasLabel, 'No licensed areas added'), // Expertise Years (always show) state.expertiseYears.isNotEmpty ? _buildExpertiseYears(state.expertiseYears, state.expertiseYearsLabel) diff --git a/lib/features/agents/presentation/screens/agent_home_screen.dart b/lib/features/agents/presentation/screens/agent_home_screen.dart index 6b6f68a..d031fe4 100644 --- a/lib/features/agents/presentation/screens/agent_home_screen.dart +++ b/lib/features/agents/presentation/screens/agent_home_screen.dart @@ -844,20 +844,6 @@ class _AgentHomeContentState extends ConsumerState<_AgentHomeContent> { _buildExperienceRow( state.contractsClosedLabel, state.contractsClosed), const Divider(height: 24, thickness: 0.2), - if (state.licensingAreas.isNotEmpty) ...[ - Align( - alignment: Alignment.centerLeft, - child: Text(state.licensingAreasLabel, - style: const TextStyle( - fontFamily: 'Fractul', - fontSize: 14, - fontWeight: FontWeight.w700, - color: AppColors.primaryDark)), - ), - const SizedBox(height: 8), - _buildTagsWrap(state.licensingAreas, sectionKey: 'licensing'), - const SizedBox(height: 16), - ], if (state.expertiseYears.isNotEmpty) ...[ Align( alignment: Alignment.centerLeft,