add copy when software in setup expereince is canceled (#45831)

<!-- Add the related story/sub-task/bug number, like Resolves #123, or
remove if NA -->
**Related issue:** Resolves #45804

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Bug Fixes**
* Improved activity feed messaging for canceled software installations
to provide clearer context about setup experience interactions,
including details about restart requests when applicable.

<!-- review_stack_entry_start -->

[![Review Change
Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/fleetdm/fleet/pull/45831?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack)

<!-- review_stack_entry_end -->

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
melpike
2026-05-22 08:41:54 -06:00
committed by GitHub
parent f413df0089
commit ac20781e11
@@ -1724,7 +1724,10 @@ const TAGGED_TEMPLATES = {
<>
{" "}
canceled <b>{title}</b> install on <b>{hostName}</b>
{fromSetupExperience ? " during setup experience" : ""}.
{fromSetupExperience
? " during setup experience. End user was asked to restart."
: ""}
.
</>
);
},