Skip to content

Commit e3b938e

Browse files
authored
fix: proper type for isRequired in health check schema (#1367)
1 parent 90b3f3d commit e3b938e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/src/tools/config/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const healthCheck = t.object({
3939
healthchecks: t.array().items(
4040
t.object({
4141
label: t.string().required(),
42-
isRequired: t.string(),
42+
isRequired: t.bool(),
4343
description: t.string(),
4444
getDiagnostics: t.func(),
4545
win32AutomaticFix: t.func(),

0 commit comments

Comments
 (0)