From 052e4ceb6d5dbecc0862ed2d966d153b11bc5a89 Mon Sep 17 00:00:00 2001 From: war-in Date: Fri, 12 Apr 2024 16:49:43 +0200 Subject: [PATCH] typos --- .../HTMLRenderers/MentionReportRenderer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/HTMLEngineProvider/HTMLRenderers/MentionReportRenderer.tsx b/src/components/HTMLEngineProvider/HTMLRenderers/MentionReportRenderer.tsx index 5b679f8e6c3b..52377fa20b4d 100644 --- a/src/components/HTMLEngineProvider/HTMLRenderers/MentionReportRenderer.tsx +++ b/src/components/HTMLEngineProvider/HTMLRenderers/MentionReportRenderer.tsx @@ -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);