fix: add web_search_deep to UI_NAME_MAP in ToolCallStatus and main.tsx
Previously web_search_deep tool calls were missing from the UI_NAME_MAP, causing their search-result cards to render as standalone cards instead of being embedded within the ToolCallStatus component row. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 4.6
parent
bb1885eca1
commit
5503a7ca9d
@@ -260,6 +260,7 @@ export default function ToolCallStatus({
|
||||
ticket_detail: "ticket-detail",
|
||||
web_search: "search-result",
|
||||
google_search: "search-result",
|
||||
web_search_deep: "search-result",
|
||||
sandbox_run: "sandbox-result",
|
||||
};
|
||||
|
||||
|
||||
@@ -817,6 +817,7 @@ function App() {
|
||||
ticket_detail: "ticket-detail",
|
||||
web_search: "search-result",
|
||||
google_search: "search-result",
|
||||
web_search_deep: "search-result",
|
||||
sandbox_run: "sandbox-result",
|
||||
};
|
||||
return tc.name && ui.name === nameMap[tc.name];
|
||||
|
||||
Reference in New Issue
Block a user