Skip to content

Commit

Permalink
Merge pull request #56242 from mkzie2/mkzie2-issue/55685
Browse files Browse the repository at this point in the history
fix: chat gbr flickers when marking task as done
  • Loading branch information
jasperhuangg authored Feb 5, 2025
2 parents 07809b6 + b59b73f commit 74e1061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/Task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ function getOutstandingChildTask(taskReport: OnyxEntry<OnyxTypes.Report>) {
reportAction.childType === CONST.REPORT.TYPE.TASK &&
reportAction?.childStateNum === CONST.REPORT.STATE_NUM.OPEN &&
reportAction?.childStatusNum === CONST.REPORT.STATUS_NUM.OPEN &&
ReportActionsUtils.getReportActionMessage(reportAction)?.isDeletedParentAction
!ReportActionsUtils.getReportActionMessage(reportAction)?.isDeletedParentAction
) {
return true;
}
Expand Down

0 comments on commit 74e1061

Please sign in to comment.