Skip to content

Commit 672320c

Browse files
committed
fix prettier issues
1 parent fe89a67 commit 672320c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/libs/ReportUtils.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9068,11 +9068,9 @@ function getReportLastMessage(reportID: string, actionsToMerge?: ReportActions)
90689068
}
90699069

90709070
function getReportLastVisibleActionCreated(report: OnyxEntry<Report>, oneTransactionThreadReport: OnyxEntry<Report>) {
9071-
const lastVisibleReportActionCreated = getLastVisibleActionReportActionsUtils(report?.reportID)?.created ?? report?.lastVisibleActionCreated ?? ''
9071+
const lastVisibleReportActionCreated = getLastVisibleActionReportActionsUtils(report?.reportID)?.created ?? report?.lastVisibleActionCreated ?? '';
90729072
const lastVisibleActionCreated =
9073-
(oneTransactionThreadReport?.lastVisibleActionCreated ?? '') > lastVisibleReportActionCreated
9074-
? oneTransactionThreadReport?.lastVisibleActionCreated
9075-
: lastVisibleReportActionCreated;
9073+
(oneTransactionThreadReport?.lastVisibleActionCreated ?? '') > lastVisibleReportActionCreated ? oneTransactionThreadReport?.lastVisibleActionCreated : lastVisibleReportActionCreated;
90769074

90779075
return lastVisibleActionCreated;
90789076
}

0 commit comments

Comments
 (0)