Skip to content

Commit

Permalink
Merge pull request Expensify#47024 from nkdengineer/fix/45259
Browse files Browse the repository at this point in the history
fix: Numbers are displayed when editing an email mention
  • Loading branch information
srikarparsi authored Aug 14, 2024
2 parents f2dad3a + c6fad52 commit b7d4e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/Parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Onyx.connect({
return;
}

accountIDToNameMap[personalDetails.accountID] = personalDetails.login ?? personalDetails.displayName ?? String(personalDetails.accountID);
accountIDToNameMap[personalDetails.accountID] = personalDetails.login ?? personalDetails.displayName ?? '';
});
},
});
Expand Down

0 comments on commit b7d4e5b

Please sign in to comment.