diff --git a/src/components/CopyPageDropdown.tsx b/src/components/CopyPageDropdown.tsx index 1fc1554..d32ea2c 100644 --- a/src/components/CopyPageDropdown.tsx +++ b/src/components/CopyPageDropdown.tsx @@ -1,5 +1,5 @@ import { useState, useRef, useEffect } from "react"; -import { Copy, MessageSquare, Sparkles, Terminal, Code } from "lucide-react"; +import { Copy, MessageSquare, Sparkles } from "lucide-react"; interface CopyPageDropdownProps { title: string; @@ -66,21 +66,6 @@ export default function CopyPageDropdown({ setIsOpen(false); }; - // Open Cursor MCP connection page - const handleConnectToCursor = () => { - window.open("https://cursor.sh/settings/mcp", "_blank"); - setIsOpen(false); - }; - - // Open VS Code MCP connection page - const handleConnectToVSCode = () => { - window.open( - "https://marketplace.visualstudio.com/items?itemName=anthropics.claude-code", - "_blank", - ); - setIsOpen(false); - }; - return (
{/* Trigger button */} @@ -153,34 +138,6 @@ export default function CopyPageDropdown({
- - {/* Connect to Cursor */} - - - {/* Connect to VS Code */} - )}