Skip to content

Commit

Permalink
Update src/libs/OptionsListUtils.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Situ Chandra Shil <[email protected]>
  • Loading branch information
cretadn22 and situchan authored Sep 17, 2024
1 parent ae281b6 commit 96c5cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/OptionsListUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1831,7 +1831,7 @@ function getOptions(
// - All archived reports should remain at the bottom
const orderedReportOptions = lodashSortBy(filteredReportOptions, (option) => {
const report = option.item;
if (option?.private_isArchived) {
if (option.private_isArchived) {
return CONST.DATE.UNIX_EPOCH;
}

Expand Down

0 comments on commit 96c5cd2

Please sign in to comment.