Skip to content

Commit 43464a6

Browse files
committed
chore: update
1 parent a18f0c2 commit 43464a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/node/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function normalizeDevToolsConfig(
2828
enabled: config === true || !!(config && config.enabled),
2929
config: {
3030
...(isObject(config) ? config : {}),
31-
clientAuth: isObject(config) ? config.clientAuth : true,
31+
clientAuth: isObject(config) ? (config.clientAuth ?? true) : true,
3232
host: isObject(config) ? (config?.host ?? host) : host,
3333
},
3434
}

0 commit comments

Comments
 (0)