fix: show tool name instead of bundle name in install prompt, add queued state

This commit is contained in:
SnapOtter
2026-05-06 18:47:34 +08:00
parent 75e48f2738
commit c47ec34021
2 changed files with 17 additions and 7 deletions
+1 -1
View File
@@ -292,7 +292,7 @@ export function ToolPage() {
if (isAiTool && !toolInstalled && featureBundle) {
return (
<AppLayout>
<FeatureInstallPrompt bundle={featureBundle} isAdmin={isAdmin} />
<FeatureInstallPrompt bundle={featureBundle} isAdmin={isAdmin} toolName={tool?.name} />
</AppLayout>
);
}