diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 92d95405eb4c..c6d70a9da71c 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -2289,6 +2289,12 @@ function getTitleReportField(reportFields: Record) { * Get the key for a report field */ function getReportFieldKey(reportFieldId: string) { + // We don't need to add `expensify_` prefix to the title field key, because backend stored title under a unique key `text_title`, + // and all the other report field keys are stored under `expensify_FIELD_ID`. + if (reportFieldId === CONST.REPORT_FIELD_TITLE_FIELD_ID) { + return reportFieldId; + } + return `expensify_${reportFieldId}`; }