diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 113fe524804c..da6d8fd556b3 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -2237,8 +2237,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 []; }