Skip to content

Commit

Permalink
Merge pull request #12533 from 0xmiroslav/issue-12487
Browse files Browse the repository at this point in the history
fix crash on profile detail
  • Loading branch information
marcaaron authored Nov 7, 2022
2 parents c6c2405 + c6e9420 commit 9c64d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/DetailsPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class DetailsPage extends React.PureComponent {
const login = lodashGet(this.props.route.params, 'login');
details = {
login,
displayName: ReportUtils.getDisplayNameForParticipant({login}),
displayName: ReportUtils.getDisplayNameForParticipant(login),
avatar: ReportUtils.getDefaultAvatar(),
};
}
Expand Down

0 comments on commit 9c64d64

Please sign in to comment.