File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
site/src/pages/HealthPage Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -102,15 +102,13 @@ export const HealthLayout: FC = () => {
102
102
< div className = "font-medium mt-4" >
103
103
{ healthStatus . healthy ? "Healthy" : "Unhealthy" }
104
104
</ div >
105
- < div
106
- className = "text-content-secondary line-height-[150%]"
107
- >
105
+ < div className = "text-content-secondary line-height-[150%]" >
108
106
{ healthStatus . healthy
109
107
? Object . keys ( visibleSections ) . some ( ( key ) => {
110
- const section =
111
- healthStatus [ key as keyof typeof visibleSections ] ;
112
- return section . warnings && section . warnings . length > 0 ;
113
- } )
108
+ const section =
109
+ healthStatus [ key as keyof typeof visibleSections ] ;
110
+ return section . warnings && section . warnings . length > 0 ;
111
+ } )
114
112
? "All systems operational, but performance might be degraded"
115
113
: "All systems operational"
116
114
: "Some issues have been detected" }
You can’t perform that action at this time.
0 commit comments