From cf2e62801cadc520e2b2da48eb183dac8d7a1c5f Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Wed, 15 Apr 2026 19:07:01 +0530 Subject: [PATCH] refactor: remove licensing areas section from ExperienceSection component --- src/components/profile/ExperienceSection.tsx | 32 -------------------- 1 file changed, 32 deletions(-) diff --git a/src/components/profile/ExperienceSection.tsx b/src/components/profile/ExperienceSection.tsx index 26e4e68..6e61220 100644 --- a/src/components/profile/ExperienceSection.tsx +++ b/src/components/profile/ExperienceSection.tsx @@ -79,38 +79,6 @@ export function ExperienceSection({ experience }: ExperienceSectionProps) { -
-

{experience.licensingAreasLabel}

-
- {experience.licensingAreas.length > 0 ? ( - <> - {displayedLicensing.map((area, idx) => ( - - {area} - - ))} - {!showAllLicensing && licensingRemaining > 0 && ( - - )} - {showAllLicensing && experience.licensingAreas.length > INITIAL_DISPLAY_COUNT && ( - - )} - - ) : ( - No licensed areas added - )} -
-
{/* Divider - Hidden on mobile, visible on desktop */}