diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 1fb70808399a..db4bb8ef651c 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -2226,8 +2226,8 @@ function canRequestMoney(report) { * @returns {Array} */ function getMoneyRequestOptions(report, reportParticipants, betas) { - // In any thread, we do not allow any new money requests yet - if (isChatThread(report)) { + // In any thread or task report, we do not allow any new money requests yet + if (isChatThread(report) || isTaskReport(report)) { return []; }