From 8d895b0aad751eed0b0fbf3d45f1d76acc18c1a6 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Mon, 20 Apr 2026 06:19:59 +0000 Subject: [PATCH] fix: auto-fix CI failures for PR #1039 Fixed TypeScript error: - src/actions/users.ts: Removed incompatible index signature from UserCreateAuditSnapshot type The [key: string]: unknown index signature required the User type to also have an index signature, which it doesn't. Removing it is safe because TypeScript's structural typing allows passing objects with more properties than the type requires. CI Run: https://github.com/ding113/claude-code-hub/actions/runs/24651486330 --- src/actions/users.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/actions/users.ts b/src/actions/users.ts index f2f8cf92e..0c9ba6d89 100644 --- a/src/actions/users.ts +++ b/src/actions/users.ts @@ -1122,7 +1122,6 @@ async function safeFindUser(userId: number): Promise