From fb96a0893273d6dff70bb7e8b52d3b18a87213ab Mon Sep 17 00:00:00 2001 From: Aswanth Vc Date: Sat, 16 Nov 2024 15:01:53 +0530 Subject: [PATCH] feat(onboarding): Removed manager category --- .../pages/Onboarding/UserInterest/UserInterest.tsx | 2 +- .../Dashboard/modules/InterestGroup/InterestGroupForm.tsx | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/Common/Authentication/pages/Onboarding/UserInterest/UserInterest.tsx b/src/modules/Common/Authentication/pages/Onboarding/UserInterest/UserInterest.tsx index 50e0960cf..bd6bbc722 100644 --- a/src/modules/Common/Authentication/pages/Onboarding/UserInterest/UserInterest.tsx +++ b/src/modules/Common/Authentication/pages/Onboarding/UserInterest/UserInterest.tsx @@ -33,7 +33,7 @@ const CheckMark = () => ( const INITIAL_INTERESTS = [ { title: "Coder", value: "coder", img: software, checked: false }, { title: "Hardware", value: "hardware", img: maker, checked: false }, - { title: "Manager", value: "manager", img: management, checked: false }, + // { title: "Manager", value: "manager", img: management, checked: false }, { title: "Creative", value: "creative", img: creative, checked: false }, { title: "Others", value: "others", img: others, checked: false } ]; diff --git a/src/modules/Dashboard/modules/InterestGroup/InterestGroupForm.tsx b/src/modules/Dashboard/modules/InterestGroup/InterestGroupForm.tsx index 196aac755..07d0acfd4 100644 --- a/src/modules/Dashboard/modules/InterestGroup/InterestGroupForm.tsx +++ b/src/modules/Dashboard/modules/InterestGroup/InterestGroupForm.tsx @@ -18,10 +18,10 @@ const IntrestGroupForm = forwardRef( const interestGroup = [ { label: "Coder", value: "coder" }, { label: "Hardware", value: "hardware" }, - { - label: "Manager", - value: "manager" - }, + // { + // label: "Manager", + // value: "manager" + // }, { label: "Creative", value: "creative" }, { label: "Others", value: "others" } ];