mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Added section on deleting Android Enterprise in Google Admin. I'll use this new title to link in the UI, inside the banner when user deletes Android Enterprise in Google Admin. Related to: https://github.com/fleetdm/fleet/issues/34152#issuecomment-3407854195
29 lines
754 B
TypeScript
29 lines
754 B
TypeScript
import React from "react";
|
|
|
|
import CustomLink from "components/CustomLink";
|
|
import InfoBanner from "components/InfoBanner";
|
|
|
|
const baseClass = "android-enterprise-deleted-message";
|
|
|
|
const AndroidEnterpriseDeletedMessage = () => {
|
|
return (
|
|
<InfoBanner
|
|
className={baseClass}
|
|
color="yellow"
|
|
cta={
|
|
<CustomLink
|
|
url="https://fleetdm.com/learn-more-about/deleting-android-enterprise"
|
|
text="Learn more"
|
|
className={baseClass}
|
|
newTab
|
|
variant="banner-link"
|
|
/>
|
|
}
|
|
>
|
|
Android MDM is off because Android Enterprise was deleted in Google
|
|
Console. Please reconnect Android Enterprise.
|
|
</InfoBanner>
|
|
);
|
|
};
|
|
|
|
export default AndroidEnterpriseDeletedMessage;
|