Skip to content

Commit

Permalink
Merge pull request #3580 from Expensify/amechler-sms-tooltip
Browse files Browse the repository at this point in the history
Remove SMS domains from tooltips
  • Loading branch information
HorusGoul authored Jun 15, 2021
2 parents 384aa5e + f8691d1 commit 7a521b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/home/HeaderView.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const HeaderView = (props) => {

return {
displayName: (isMultipleParticipant ? firstName : displayNameTrimmed) || Str.removeSMSDomain(login),
tooltip: login,
tooltip: Str.removeSMSDomain(login),
};
},
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home/sidebar/OptionRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const OptionRow = ({

return {
displayName: (isMultipleParticipant ? firstName : displayNameTrimmed) || Str.removeSMSDomain(login),
tooltip: login,
tooltip: Str.removeSMSDomain(login),
};
},
);
Expand Down

0 comments on commit 7a521b9

Please sign in to comment.