From ac20781e112e4a80987a5625d987f731d5cb88cf Mon Sep 17 00:00:00 2001
From: melpike <79950145+melpike@users.noreply.github.com>
Date: Fri, 22 May 2026 08:41:54 -0600
Subject: [PATCH] add copy when software in setup expereince is canceled
(#45831)
**Related issue:** Resolves #45804
## 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.
[](https://app.coderabbit.ai/change-stack/fleetdm/fleet/pull/45831?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack)
---
.../ActivityFeed/GlobalActivityItem/GlobalActivityItem.tsx | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/frontend/pages/DashboardPage/cards/ActivityFeed/GlobalActivityItem/GlobalActivityItem.tsx b/frontend/pages/DashboardPage/cards/ActivityFeed/GlobalActivityItem/GlobalActivityItem.tsx
index 98e0c1c51d..2405dc79e9 100644
--- a/frontend/pages/DashboardPage/cards/ActivityFeed/GlobalActivityItem/GlobalActivityItem.tsx
+++ b/frontend/pages/DashboardPage/cards/ActivityFeed/GlobalActivityItem/GlobalActivityItem.tsx
@@ -1724,7 +1724,10 @@ const TAGGED_TEMPLATES = {
<>
{" "}
canceled {title} install on {hostName}
- {fromSetupExperience ? " during setup experience" : ""}.
+ {fromSetupExperience
+ ? " during setup experience. End user was asked to restart."
+ : ""}
+ .
>
);
},