diff --git a/frontend/pages/hosts/details/cards/HostHeader/HostHeader.tsx b/frontend/pages/hosts/details/cards/HostHeader/HostHeader.tsx
index 1a3eade04e..29a2a78392 100644
--- a/frontend/pages/hosts/details/cards/HostHeader/HostHeader.tsx
+++ b/frontend/pages/hosts/details/cards/HostHeader/HostHeader.tsx
@@ -179,19 +179,14 @@ const HostHeader = ({
return (
<>
-
- {tag.title}
-
-
-
- {tag.generateTooltip(platform)}
-
-
+ {tag.title}
+
>
);
};
diff --git a/frontend/pages/hosts/details/cards/HostHeader/helpers.tsx b/frontend/pages/hosts/details/cards/HostHeader/helpers.tsx
index 007c67c6be..71585c0e5b 100644
--- a/frontend/pages/hosts/details/cards/HostHeader/helpers.tsx
+++ b/frontend/pages/hosts/details/cards/HostHeader/helpers.tsx
@@ -1,5 +1,5 @@
import React from "react";
-import { isMacOS, isAppleDevice, isIPadOrIPhone } from "interfaces/platform";
+import { isMacOS, isIPadOrIPhone } from "interfaces/platform";
import { HostMdmDeviceStatusUIState } from "../../helpers";
interface IDeviceStatusTag {
@@ -61,8 +61,13 @@ export const DEVICE_STATUS_TAGS: DeviceStatusTagConfig = {
locking: {
title: "LOCK PENDING",
tagType: "warning",
- generateTooltip: () =>
- "Host will lock when it comes online. If the host is online, it will lock the next time it checks in to Fleet.",
+ generateTooltip: () => (
+ <>
+ Host will lock when it comes online. If the host is
+
+ online, it will lock the next time it checks in to Fleet.
+ >
+ ),
},
wiped: {
title: "WIPED",