mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-03 19:43:04 +08:00
Fix contact sidebar not using the correct LinkedIn url type for personal profiles
This commit is contained in:
parent
1cdb6094de
commit
02873b9f63
1 changed files with 1 additions and 1 deletions
|
@ -446,7 +446,7 @@ export default class SidebarParticipantProfile extends React.Component {
|
|||
|
||||
<div className="social-profiles-wrap">
|
||||
<SocialProfileLink service="facebook" handle={facebook && facebook.handle} />
|
||||
<SocialProfileLink service="linkedin" handle={linkedin && linkedin.handle} />
|
||||
<SocialProfileLink service="linkedin" handle={linkedin && `in/${linkedin.handle}`} />
|
||||
<SocialProfileLink service="twitter" handle={twitter && twitter.handle} />
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue