Fix contact sidebar not using the correct LinkedIn url type for personal profiles

This commit is contained in:
Ben Gotow 2019-02-22 21:34:29 -08:00
parent 1cdb6094de
commit 02873b9f63

View file

@ -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>