Skip to content

Commit 7afd801

Browse files
phodalclaude
andcommitted
fix(types): add 'checking' status to ProviderItem type
The AcpProviderInfo type has a 'checking' status for when provider availability is being checked, but ProviderItem was missing this state, causing a type error in chat-panel.tsx. This fixes the build failure: Type 'AcpProviderInfo[]' is not assignable to type 'ProviderItem[]' Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2d4f619 commit 7afd801

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/client/components/tiptap-input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ interface ProviderItem {
437437
name: string;
438438
description: string;
439439
command: string;
440-
status?: "available" | "unavailable";
440+
status?: "available" | "unavailable" | "checking";
441441
/** Source of the provider: "static" for builtin, "registry" for ACP registry */
442442
source?: "static" | "registry";
443443
}

0 commit comments

Comments
 (0)