Skip to content

Commit

Permalink
Fix co-leader styling in interest group members
Browse files Browse the repository at this point in the history
  • Loading branch information
eikhr committed May 7, 2023
1 parent f0a94e4 commit 5676480
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const Name = ({ user, role }: { user: User; role: RoleType }) => {
roleStyle = styles.leader;
break;

case 'co_leader':
case 'co-leader':
roleStyle = styles.coleader;
break;

Expand All @@ -48,7 +48,7 @@ const RoleIcon = ({ role }: { role: RoleType }) => {
props = ['star', 'Leder'];
break;

case 'co_leader':
case 'co-leader':
iconStyle = styles.coleadericon;
props = ['star-outline', 'Nestleder'];
break;
Expand Down

0 comments on commit 5676480

Please sign in to comment.