circuit-mcp 2.3.1 → 2.3.3
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/package.json +1 -1
- package/src/auth.js +3 -1
package/package.json
CHANGED
package/src/auth.js
CHANGED
|
@@ -137,6 +137,7 @@ function getSuccessPage() {
|
|
|
137
137
|
<html>
|
|
138
138
|
<head>
|
|
139
139
|
<title>Circuit - Connected</title>
|
|
140
|
+
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'><defs><mask id='m'><circle cx='16' cy='16' r='13' fill='white'/><circle cx='16' cy='16' r='6.9' fill='black'/></mask></defs><ellipse cx='16' cy='17.73' rx='13' ry='11.27' fill='rgba(168,102,122,0.2)'/><circle cx='16' cy='16' r='13' fill='%23A8667A' mask='url(%23m)'/></svg>">
|
|
140
141
|
<style>
|
|
141
142
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
142
143
|
body {
|
|
@@ -186,7 +187,7 @@ function getSuccessPage() {
|
|
|
186
187
|
</div>
|
|
187
188
|
<h1>Connected.</h1>
|
|
188
189
|
<p>Your AI coding assistant is now connected to Circuit.</p>
|
|
189
|
-
<p class="hint">
|
|
190
|
+
<p class="hint">You can close this tab and return to your editor.</p>
|
|
190
191
|
</div>
|
|
191
192
|
<script>setTimeout(() => window.close(), 3000);</script>
|
|
192
193
|
</body>
|
|
@@ -203,6 +204,7 @@ function getErrorPage(error) {
|
|
|
203
204
|
<html>
|
|
204
205
|
<head>
|
|
205
206
|
<title>Circuit - Connection Failed</title>
|
|
207
|
+
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'><defs><mask id='m'><circle cx='16' cy='16' r='13' fill='white'/><circle cx='16' cy='16' r='6.9' fill='black'/></mask></defs><ellipse cx='16' cy='17.73' rx='13' ry='11.27' fill='rgba(168,102,122,0.2)'/><circle cx='16' cy='16' r='13' fill='%23A8667A' mask='url(%23m)'/></svg>">
|
|
206
208
|
<style>
|
|
207
209
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
208
210
|
body {
|