From 1e4acd70454f8f74ee9898945a6f96ab079b8ab4 Mon Sep 17 00:00:00 2001 From: Alex Beaman Date: Tue, 27 Jan 2026 17:39:21 -0800 Subject: [PATCH] Clarify var name --- src/libs/ReportActionsFollowupUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libs/ReportActionsFollowupUtils.ts b/src/libs/ReportActionsFollowupUtils.ts index e068a3935daea..acfbc01ebbc58 100644 --- a/src/libs/ReportActionsFollowupUtils.ts +++ b/src/libs/ReportActionsFollowupUtils.ts @@ -9,8 +9,8 @@ import {getReportActionMessage, isActionOfType} from './ReportActionsUtils'; * @returns true if the action is an ADD_COMMENT with unresolved followups, false otherwise */ function containsActionableFollowUps(reportAction: OnyxInputOrEntry): boolean { - const isActionAComment = isActionOfType(reportAction, CONST.REPORT.ACTIONS.TYPE.ADD_COMMENT); - if (!isActionAComment) { + const isAddCommentAction = isActionOfType(reportAction, CONST.REPORT.ACTIONS.TYPE.ADD_COMMENT); + if (!isAddCommentAction) { return false; } const messageHtml = getReportActionMessage(reportAction)?.html;