feat: change style

This commit is contained in:
MMMarcinho
2025-05-08 23:15:00 +08:00
parent 3e41520688
commit 8373795804

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"}