changed placeholder urls to docker specific ones

This commit is contained in:
arkml 2025-05-20 12:44:20 +05:30
parent 4620f4ceb9
commit bac6f4745b
2 changed files with 2 additions and 2 deletions

View file

@ -305,7 +305,7 @@ function McpServersSection({
/>
<Input
label="SSE URL"
placeholder="https://localhost:8000/sse"
placeholder="http://host.docker.internal:8000/sse"
value={newServer.url}
onChange={(e) => {
setNewServer({ ...newServer, url: e.target.value });

View file

@ -210,7 +210,7 @@ function McpServersSection({ projectId }: { projectId: string }) {
<div className="space-y-2">
<label className="text-sm font-medium">SSE URL</label>
<Input
placeholder="https://localhost:8000/sse"
placeholder="http://host.docker.internal:8000/sse"
value={newServer.url}
onChange={(e) => {
setNewServer({ ...newServer, url: e.target.value });