diff --git a/frontend/pages/software/components/EmptySoftware.tsx b/frontend/pages/software/components/EmptySoftware.tsx deleted file mode 100644 index 4cd6b3dafe..0000000000 --- a/frontend/pages/software/components/EmptySoftware.tsx +++ /dev/null @@ -1,68 +0,0 @@ -// This component is used on ManageSoftwarePage.tsx and DashboardPage.tsx > Software.tsx card - -import React from "react"; - -import CustomLink from "components/CustomLink"; - -const baseClass = "manage-software-page"; - -type IEmptySoftwareProps = { - message: "disabled" | "collecting" | "default" | ""; - noSandboxHosts?: boolean; -}; - -const EmptySoftware = ({ - message, - noSandboxHosts, -}: IEmptySoftwareProps): JSX.Element => { - switch (message) { - case "disabled": { - return ( -
- Check out the Fleet documentation on{" "}
-
- Try again in about{" "} - {noSandboxHosts - ? "15 minutes after host enrollment." - : "1 hour as the system catches up."} -
-Try again in about 1 hour as the system catches up.
-