diff --git a/frontend/app/components/Header/HealthStatus/HealthModal/Footer.tsx b/frontend/app/components/Header/HealthStatus/HealthModal/Footer.tsx index 0daf5cf56..4aace8e06 100644 --- a/frontend/app/components/Header/HealthStatus/HealthModal/Footer.tsx +++ b/frontend/app/components/Header/HealthStatus/HealthModal/Footer.tsx @@ -6,7 +6,7 @@ function Footer({ isSetup }: { isSetup?: boolean }) { return (
Installation Status
-
-
- {isLoading ? ( - null} name={"Loading health status"} isLoading /> - ) - : Object.keys(healthResponse.healthMap).map((service) => ( - - setSelectedService(service)} - healthOk={healthResponse.healthMap[service].healthOk} - name={healthResponse.healthMap[service].name} - isSelectable - isSelected={selectedService === service} - /> - - ))} -
-
- {isLoading ? ( -
- -
- ) : selectedService ? ( - - ) : - } -
-
- {isSetup ? ( -
- + {isLoading ? null : selectedService ? ( + + ) : + } +
- ) : null} + {isSetup ? ( +
+ +
+ ) : null} +