Skip to content

Commit

Permalink
Merge pull request Expensify#55411 from callstack-internal/gedu/55254…
Browse files Browse the repository at this point in the history
…_lhn_draft_wrong_order
  • Loading branch information
mountiny authored Jan 21, 2025
2 parents 3179d43 + 645b80e commit 8976674
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useReportIDs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function ReportIDsContextProvider({
const [chatReports] = useOnyx(ONYXKEYS.COLLECTION.REPORT);
const [policies] = useOnyx(ONYXKEYS.COLLECTION.POLICY, {selector: (c) => mapOnyxCollectionItems(c, policySelector)});
const [transactionViolations] = useOnyx(ONYXKEYS.COLLECTION.TRANSACTION_VIOLATIONS);
const [reportsDrafts] = useOnyx(ONYXKEYS.COLLECTION.REPORT_DRAFT_COMMENT);
const [reportsDrafts] = useOnyx(ONYXKEYS.COLLECTION.REPORT_DRAFT_COMMENT, {initialValue: {}});
const draftAmount = Object.keys(reportsDrafts ?? {}).length;
const [betas] = useOnyx(ONYXKEYS.BETAS);

Expand Down

0 comments on commit 8976674

Please sign in to comment.