diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js index 813cc2e37bf..31384254d8a 100644 --- a/src/libs/actions/Report.js +++ b/src/libs/actions/Report.js @@ -672,18 +672,6 @@ function fetchActions(reportID) { }); } -/** - * Get the actions of a report during pagination - * - * @param {Number} reportID - * @param {Number} [offset] - */ -function fetchActionsWithPagination(reportID, offset) { - Onyx.set(ONYXKEYS.IS_LOADING_MORE_REPORT_ACTIONS, true); - fetchActions(reportID, offset) - .finally(() => Onyx.set(ONYXKEYS.IS_LOADING_MORE_REPORT_ACTIONS, false)); -} - /** * Get the initial actions of a report * @@ -1620,7 +1608,6 @@ export { navigateToConciergeChat, handleInaccessibleReport, setReportWithDraft, - fetchActionsWithPagination, fetchInitialActions, createPolicyRoom, renameReport,