Skip to content

Commit

Permalink
Merge pull request #482 from DFE-Digital/feature/delegate-decision
Browse files Browse the repository at this point in the history
small bug fix
  • Loading branch information
elielijah321 authored May 28, 2024
2 parents 7c2531d + bff8f75 commit bbfed1a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public CommandResult Update(AdvisoryBoardDecisionDetails details,
_deferredReasons.Clear();
_deferredReasons.AddRange(deferredReasons?.Any() ?? false ? deferredReasons.ToList() : _deferredReasons);
_withdrawnReasons.Clear();
_withdrawnReasons.AddRange(WithdrawnReasons?.Any() ?? false ? WithdrawnReasons.ToList() : _withdrawnReasons);
_withdrawnReasons.AddRange(withdrawnReasons?.Any() ?? false ? withdrawnReasons.ToList() : _withdrawnReasons);

return new CommandSuccessResult();
}
Expand Down

0 comments on commit bbfed1a

Please sign in to comment.