@meetopenbot/linear 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -47,7 +47,7 @@ function* yieldOAuthAuthorizeWidget(agentId, authorizeUrl, modeHint, options) {
47
47
  id: OPEN_URL_ACTION_ID,
48
48
  label: "Connect Linear",
49
49
  variant: "primary",
50
- value: { url: authorizeUrl, target: "_blank" },
50
+ value: { url: authorizeUrl },
51
51
  },
52
52
  ],
53
53
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetopenbot/linear",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Linear OAuth connect flow and MCP-backed agent for issues, projects, and comments",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -113,7 +113,7 @@ function* yieldOAuthAuthorizeWidget(
113
113
  id: OPEN_URL_ACTION_ID,
114
114
  label: "Connect Linear",
115
115
  variant: "primary",
116
- value: { url: authorizeUrl, target: "_blank" },
116
+ value: { url: authorizeUrl },
117
117
  },
118
118
  ],
119
119
  },