From 958146bbac72a70a0fbbe19f0ef3691819280411 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 25 Apr 2026 12:17:59 -0700 Subject: [PATCH] fix(plugins): satisfy registry repair lint --- src/commands/doctor-plugin-registry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/doctor-plugin-registry.ts b/src/commands/doctor-plugin-registry.ts index 563877f12b4..628427619b1 100644 --- a/src/commands/doctor-plugin-registry.ts +++ b/src/commands/doctor-plugin-registry.ts @@ -41,7 +41,7 @@ function mergeInstallRecords( ): Record { return { ...legacyRecords, - ...(ledgerRecords ?? {}), + ...ledgerRecords, }; }