Skip to content

Commit 9b77013

Browse files
Fix #37: Removes top 3 skills highlights
- Changed selected skill icon in filter
1 parent 1ac0955 commit 9b77013

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Frontend/components/SkillSection.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,7 @@ function SkillSection(props) {
8080
setSkills(newSkills);
8181
}}
8282
style={{margin: 4}}
83-
icon="close"
84-
selected={true}>
83+
icon="close-circle-outline">
8584
{skill.skill_name}
8685
</Chip>
8786
);

Frontend/components/Skills.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ function Skills({skillList, skills, setSkills}) {
3535
style={{
3636
marginEnd: 8,
3737
marginBottom: 8,
38-
borderWidth: index < 3 ? 2 : 0,
38+
// borderWidth: index < 3 ? 2 : 0,
39+
borderWidth: 0,
3940
borderColor: colors.primary,
4041
}}
4142
icon="close-circle-outline"

0 commit comments

Comments
 (0)