From b602c3d3b372a59fc4e251b3dd26dddd818a97d9 Mon Sep 17 00:00:00 2001 From: Aldo Canepa Date: Wed, 19 Jul 2023 15:08:40 -0700 Subject: [PATCH] Remove unecessary default value --- src/libs/ReportActionsUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/ReportActionsUtils.js b/src/libs/ReportActionsUtils.js index 580b93d116a7..7450940c02e2 100644 --- a/src/libs/ReportActionsUtils.js +++ b/src/libs/ReportActionsUtils.js @@ -100,7 +100,7 @@ function hasCommentThread(reportAction) { * @param {Object} [allReportActionsParam] * @returns {Object} */ -function getParentReportAction(report, allReportActionsParam = {}) { +function getParentReportAction(report, allReportActionsParam) { if (!report || !report.parentReportID || !report.parentReportActionID) { return {}; }