Replace "try again in a few seconds" with "try again soon" (#31147)

#31019

- [x] Manual QA for all new/changed functionality
This commit is contained in:
Dante Catalfamo
2025-07-23 09:22:58 -04:00
committed by GitHub
parent bbb683ded8
commit 10569e8103
@@ -1692,13 +1692,13 @@ const ManageHostsPage = ({
graphicName: "empty-hosts",
header: "Hosts will show up here once theyre added to Fleet",
info:
"Expecting to see hosts? Try again in a few seconds as the system catches up.",
"Expecting to see hosts? Try again soon as the system catches up.",
};
if (includesFilterQueryParam) {
delete emptyHosts.graphicName;
emptyHosts.header = "No hosts match the current criteria";
emptyHosts.info =
"Expecting to see new hosts? Try again in a few seconds as the system catches up.";
"Expecting to see new hosts? Try again soon as the system catches up.";
} else if (canEnrollHosts) {
emptyHosts.header = "Add your hosts to Fleet";
emptyHosts.info =
@@ -1784,12 +1784,12 @@ const ManageHostsPage = ({
const emptyHosts: IEmptyTableProps = {
header: "No hosts match the current criteria",
info:
"Expecting to see new hosts? Try again in a few seconds as the system catches up.",
"Expecting to see new hosts? Try again soon as the system catches up.",
};
if (isLastPage) {
emptyHosts.header = "No more hosts to display";
emptyHosts.info =
"Expecting to see more hosts? Try again in a few seconds as the system catches up.";
"Expecting to see more hosts? Try again soon as the system catches up.";
}
return emptyHosts;