Skip to content

Commit f97a359

Browse files
committed
fmt
1 parent b0dace2 commit f97a359

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

site/src/pages/HealthPage/HealthPage.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
import { Stats, StatsItem } from "components/Stats/Stats";
2020
import { createDayString } from "utils/createDayString";
2121
import { DashboardFullPage } from "components/Dashboard/DashboardLayout";
22-
import { DerphealthReport } from "api/typesGenerated"
22+
import { DerphealthReport } from "api/typesGenerated";
2323

2424
const sections = {
2525
derp: "DERP",
@@ -140,10 +140,10 @@ export function HealthPageView({
140140
.map((key) => {
141141
const label = sections[key as keyof typeof sections];
142142
const isActive = tab.value === key;
143-
const healthSection = healthStatus[key as keyof typeof sections]
143+
const healthSection =
144+
healthStatus[key as keyof typeof sections];
144145
const isHealthy = healthSection.healthy;
145146
if (healthSection instanceof DerphealthReport) {
146-
147147
}
148148
const isWarning = (healthSection as DerphealthReport).warning;
149149
return (
@@ -224,7 +224,7 @@ export function HealthPageView({
224224
</Box>
225225
</DashboardFullPage>
226226
);
227-
};
227+
}
228228

229229
const styles = {
230230
stats: (theme) => ({

site/src/testHelpers/entities.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
withDefaultFeatures,
33
type GetLicensesResponse,
4-
type DeploymentConfig
4+
type DeploymentConfig,
55
} from "api/api";
66
import { FieldError } from "api/errors";
77
import * as TypesGen from "api/typesGenerated";

0 commit comments

Comments
 (0)