Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
war-in committed Apr 12, 2024
1 parent 55fc7f0 commit 052e4ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ const getMentionDetails = (htmlAttributeReportID: string, currentReport: OnyxEnt
let reportID: string | undefined;
let mentionDisplayText: string;

// get mention details based on reportID from tag attribute
// Get mention details based on reportID from tag attribute
if (!isEmpty(htmlAttributeReportID)) {
const report = getReport(htmlAttributeReportID);

reportID = report?.reportID ?? undefined;
mentionDisplayText = removeLeadingLTRAndHash(report?.reportName ?? report?.displayName ?? htmlAttributeReportID);
// get mention details from name inside tnode
// Get mention details from name inside tnode
} else if ('data' in tnode && !isEmptyObject(tnode.data)) {
mentionDisplayText = removeLeadingLTRAndHash(tnode.data);

Expand Down

0 comments on commit 052e4ce

Please sign in to comment.