diff --git a/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx b/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx
index 51f9981f1524..d95fc9e11a31 100755
--- a/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx
+++ b/src/components/HTMLEngineProvider/BaseHTMLEngineProvider.tsx
@@ -77,8 +77,13 @@ function BaseHTMLEngineProvider({textSelectable = false, children, enableExperim
mixedUAStyles: {...styles.textSupporting, ...styles.textLineThrough},
contentModel: HTMLContentModel.textual,
}),
+ 'uploading-attachment': HTMLElementModel.fromCustomModel({
+ tagName: 'uploading-attachment',
+ mixedUAStyles: {...styles.mt4},
+ contentModel: HTMLContentModel.block,
+ }),
}),
- [styles.formError, styles.mb0, styles.colorMuted, styles.textLabelSupporting, styles.lh16, styles.textSupporting, styles.textLineThrough],
+ [styles.formError, styles.mb0, styles.colorMuted, styles.textLabelSupporting, styles.lh16, styles.textSupporting, styles.textLineThrough, styles.mt4],
);
/* eslint-enable @typescript-eslint/naming-convention */
diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts
index 690cfdafd92d..77bfa57f0b38 100644
--- a/src/libs/ReportUtils.ts
+++ b/src/libs/ReportUtils.ts
@@ -3494,7 +3494,7 @@ function buildOptimisticAddCommentReportAction(
htmlForNewComment = commentText;
textForNewComment = parser.htmlToText(htmlForNewComment);
} else {
- htmlForNewComment = `${commentText}\n${CONST.ATTACHMENT_UPLOADING_MESSAGE_HTML}`;
+ htmlForNewComment = `${commentText}${CONST.ATTACHMENT_UPLOADING_MESSAGE_HTML}`;
textForNewComment = `${parser.htmlToText(commentText)}\n${CONST.ATTACHMENT_UPLOADING_MESSAGE_HTML}`;
}