This commit is contained in:
Saoud Rizwan
2024-12-11 10:11:08 -08:00
parent cb55360738
commit d05033909b

View File

@@ -119,15 +119,17 @@ const McpView = ({ onDone }: McpViewProps) => {
community-made servers community-made servers
</VSCodeLink>{" "} </VSCodeLink>{" "}
or ask Cline to create new tools specific to your workflow (e.g., "add a tool that pulls GitHub or ask Cline to create new tools specific to your workflow (e.g., "add a tool that pulls GitHub
issues") issues").
</div> </div>
{/* Server List */} {/* Server List */}
<div style={{ display: "flex", flexDirection: "column", gap: "10px" }}> {servers.length > 0 && (
{servers.map((server) => ( <div style={{ display: "flex", flexDirection: "column", gap: "10px" }}>
<ServerRow key={server.name} server={server} /> {servers.map((server) => (
))} <ServerRow key={server.name} server={server} />
</div> ))}
</div>
)}
{/* Edit Settings Button */} {/* Edit Settings Button */}
<div style={{ marginTop: "10px", width: "100%" }}> <div style={{ marginTop: "10px", width: "100%" }}>