diff --git a/registry/coder/modules/antigravity/main.tf b/registry/coder/modules/antigravity/main.tf index 364f2e29..cd50197c 100644 --- a/registry/coder/modules/antigravity/main.tf +++ b/registry/coder/modules/antigravity/main.tf @@ -57,7 +57,6 @@ variable "mcp" { } data "coder_workspace" "me" {} - data "coder_workspace_owner" "me" {} module "vscode-desktop-core" { diff --git a/registry/coder/modules/cursor/main.test.ts b/registry/coder/modules/cursor/main.test.ts index 913dbce0..39ce0521 100644 --- a/registry/coder/modules/cursor/main.test.ts +++ b/registry/coder/modules/cursor/main.test.ts @@ -105,10 +105,7 @@ describe("cursor", async () => { } expect(resp.exitCode).toBe(0); - const content = await readFileContainer( - id, - "/root/.cursor/mcp.json", - ); + const content = await readFileContainer(id, "/root/.cursor/mcp.json"); expect(content).toBe(mcp); } finally { await removeContainer(id); diff --git a/registry/coder/modules/windsurf/main.tf b/registry/coder/modules/windsurf/main.tf index 903bdcbb..b92482ed 100644 --- a/registry/coder/modules/windsurf/main.tf +++ b/registry/coder/modules/windsurf/main.tf @@ -52,7 +52,7 @@ variable "display_name" { variable "mcp" { type = string - description = "JSON-encoded string to configure MCP servers for Windsurf. When set, writes ~/.codeium/windsurf/mcp_config.json." + description = "JSON-encoded string to configure MCP servers for Windsurf. When set, writes $HOME/.codeium/windsurf/mcp_config.json." default = null }