Empty state followup (#44427)

This commit is contained in:
RachelElysia
2026-04-29 15:10:05 -04:00
committed by GitHub
parent 07e4e7afe6
commit a59f1fd356
2 changed files with 8 additions and 11 deletions
@@ -7,9 +7,14 @@ const baseClass = "awaiting-results";
const AwaitingResults = () => {
return (
<EmptyState
header="Phoning home..."
info=" There are currently no results to your report. Please wait while we talk
to more hosts."
header="Waiting for results"
info={
<>
No hosts have responded yet.
<br />
Results will appear as hosts check in.
</>
}
className={baseClass}
/>
);
@@ -1,8 +0,0 @@
.awaiting-results {
margin: 120px auto;
width: 275px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}