export function getRgcDecisionCommentActions(input: {
  hasProgressUpdate: boolean;
  hasComment: boolean;
}) {
  return {
    showAdd: !input.hasComment,
    canAdd: input.hasProgressUpdate && !input.hasComment,
    canEdit: input.hasComment,
    canDelete: input.hasComment,
  };
}
