File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import {
19
19
import { Stats , StatsItem } from "components/Stats/Stats" ;
20
20
import { createDayString } from "utils/createDayString" ;
21
21
import { DashboardFullPage } from "components/Dashboard/DashboardLayout" ;
22
- import { DerphealthReport } from "api/typesGenerated"
22
+ import { DerphealthReport } from "api/typesGenerated" ;
23
23
24
24
const sections = {
25
25
derp : "DERP" ,
@@ -140,10 +140,10 @@ export function HealthPageView({
140
140
. map ( ( key ) => {
141
141
const label = sections [ key as keyof typeof sections ] ;
142
142
const isActive = tab . value === key ;
143
- const healthSection = healthStatus [ key as keyof typeof sections ]
143
+ const healthSection =
144
+ healthStatus [ key as keyof typeof sections ] ;
144
145
const isHealthy = healthSection . healthy ;
145
146
if ( healthSection instanceof DerphealthReport ) {
146
-
147
147
}
148
148
const isWarning = ( healthSection as DerphealthReport ) . warning ;
149
149
return (
@@ -224,7 +224,7 @@ export function HealthPageView({
224
224
</ Box >
225
225
</ DashboardFullPage >
226
226
) ;
227
- } ;
227
+ }
228
228
229
229
const styles = {
230
230
stats : ( theme ) => ( {
Original file line number Diff line number Diff line change 1
1
import {
2
2
withDefaultFeatures ,
3
3
type GetLicensesResponse ,
4
- type DeploymentConfig
4
+ type DeploymentConfig ,
5
5
} from "api/api" ;
6
6
import { FieldError } from "api/errors" ;
7
7
import * as TypesGen from "api/typesGenerated" ;
You can’t perform that action at this time.
0 commit comments