Update tooltip to exclude link (#28559)

This isn't supposed to be link. We use bold text to reference UI
elements, but it's not expected to have links in tooltip.

---------

Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
This commit is contained in:
Marko Lisica
2025-06-09 13:10:28 +01:00
committed by GitHub
co-authored by Gabriel Hernandez
parent 6e764edfec
commit a5857cf6ef
@@ -149,12 +149,9 @@ const DiskEncryption = ({
: ["Apple", "FileVault"];
return (
<>
{AppleOrWindows} MDM must be turned on in{" "}
<a href="/settings/integrations/mdm">
<b>Settings</b> &gt; <b>Integrations</b> &gt;{" "}
<b>Mobile Device Management (MDM)</b>
</a>{" "}
to enforce disk encryption via {DEMethod}.
{AppleOrWindows} MDM must be turned on in <b>Settings</b> &gt;{" "}
<b>Integrations</b> &gt; <b>Mobile Device Management (MDM)</b> to
enforce disk encryption via {DEMethod}.
</>
);
};