tui: update generic tool icon to gear for better visual distinction

This commit is contained in:
Dax Raad 2025-10-10 00:55:55 -04:00
parent a0cf1fa13a
commit 2f5bd73c56

View file

@ -666,7 +666,7 @@ type ToolProps<T extends Tool.Info> = {
}
function GenericTool(props: ToolProps<any>) {
return (
<ToolTitle icon="#" fallback="Writing command..." when={true}>
<ToolTitle icon="" fallback="Writing command..." when={true}>
{props.tool} {input(props.input)}
</ToolTitle>
)