File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed
src/apps/talent-search/src Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ export async function getAllSkills(): Promise<Array<Skill>>{
1010
1111export async function retrieveMatchesForSkills ( skills :ReadonlyArray < Skill > ) : Promise < Array < Member > > {
1212 const params = new URLSearchParams ( )
13- console . log ( "Search skills: " + JSON . stringify ( skills ) )
1413 skills . forEach ( value => params . append ( 'skill' , value . skillName ) )
1514 params . append ( 'sortBy' , 'numberOfChallengesWon' )
1615 params . append ( 'sortOrder' , 'desc' )
Original file line number Diff line number Diff line change 1313 overflow : visible ;
1414 }
1515 }
16- z-index : -1000 ;
1716}
1817
1918.header {
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ export const TalentSearch: FC = () => {
2828 MatcherService . getAllSkills ( )
2929 . then ( ( response : Array < Skill > ) => {
3030 setAllSkills ( response ) ;
31-
32- console . log ( JSON . stringify ( allSkills ) ) ;
3331 } )
3432 . catch ( ( e : Error ) => {
3533 console . log ( e ) ;
@@ -91,7 +89,6 @@ export const TalentSearch: FC = () => {
9189 if ( ! allSkills || allSkills . length == 0 ) {
9290 return ( < LoadingSpinner /> )
9391 }
94-
9592 return (
9693 < ContentLayout
9794 contentClass = { styles . contentLayout }
You can’t perform that action at this time.
0 commit comments