Skip to content

Commit 7b6ecf9

Browse files
committed
Remove debugging stuff
1 parent 882378e commit 7b6ecf9

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

src/apps/talent-search/src/lib/services/MatcherService.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ export async function getAllSkills(): Promise<Array<Skill>>{
1010

1111
export 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')

src/apps/talent-search/src/routes/talent-search/TalentSearch.module.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
overflow: visible;
1414
}
1515
}
16-
z-index: -1000;
1716
}
1817

1918
.header{

src/apps/talent-search/src/routes/talent-search/TalentSearch.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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}

0 commit comments

Comments
 (0)