From 8656998925520cc09f6830b2ed68bd138359e41b Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Wed, 16 Aug 2023 00:58:42 +0300 Subject: [PATCH] HOTFIX - update skill search limit for talent search app to 7 --- .../talent-search/src/components/search-input/SearchInput.tsx | 2 +- src/apps/talent-search/src/config/constants.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/talent-search/src/components/search-input/SearchInput.tsx b/src/apps/talent-search/src/components/search-input/SearchInput.tsx index 3335905ad..6dd084542 100644 --- a/src/apps/talent-search/src/components/search-input/SearchInput.tsx +++ b/src/apps/talent-search/src/components/search-input/SearchInput.tsx @@ -66,7 +66,7 @@ const SearchInput: FC = props => { /> {emsiSkills.length >= SKILL_SEARCH_LIMIT && (
- You can only search up to 10 skills at one time + {`You can only search up to ${SKILL_SEARCH_LIMIT} skills at one time`}
)} diff --git a/src/apps/talent-search/src/config/constants.ts b/src/apps/talent-search/src/config/constants.ts index ec59624ad..b70da38c4 100644 --- a/src/apps/talent-search/src/config/constants.ts +++ b/src/apps/talent-search/src/config/constants.ts @@ -1,2 +1,2 @@ export const SPRIG_CES_SURVEY_ID = 'onTalentSearchResults' -export const SKILL_SEARCH_LIMIT = 10 +export const SKILL_SEARCH_LIMIT = 7