From 7ee763d4403b8d87cb3b0e2f13a0b35a8184bfef Mon Sep 17 00:00:00 2001 From: GandalfGwaihir Date: Wed, 24 Apr 2024 04:58:03 +0530 Subject: [PATCH] Fix lint --- src/libs/ReportUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/ReportUtils.ts b/src/libs/ReportUtils.ts index 58af41cfab6f..02b7b7f91fb6 100644 --- a/src/libs/ReportUtils.ts +++ b/src/libs/ReportUtils.ts @@ -2289,7 +2289,7 @@ 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`, + // 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;