Merge pull request #388 from MMMarcinho/feat/yizhi

feat: change style
This commit is contained in:
Cliff Hall
2025-05-12 13:03:51 -04:00
committed by GitHub

View File

@@ -133,12 +133,12 @@ const ToolsTab = ({
}} }}
setSelectedItem={setSelectedTool} setSelectedItem={setSelectedTool}
renderItem={(tool) => ( renderItem={(tool) => (
<> <div className="flex flex-col items-start">
<span className="flex-1">{tool.name}</span> <span className="flex-1">{tool.name}</span>
<span className="text-sm text-gray-500 text-right"> <span className="text-sm text-gray-500 text-left">
{tool.description} {tool.description}
</span> </span>
</> </div>
)} )}
title="Tools" title="Tools"
buttonText={nextCursor ? "List More Tools" : "List Tools"} buttonText={nextCursor ? "List More Tools" : "List Tools"}