@wrongstack/desktop 1.0.3 → 1.0.6

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.
Binary file
@@ -0,0 +1,6 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" fill="none" role="img" aria-labelledby="wrongstack-logo-title" shape-rendering="crispEdges">
2
+ <title id="wrongstack-logo-title">WrongStack</title>
3
+ <rect width="400" height="400" fill="#121210"/>
4
+ <path fill="#FD9F02" d="M30 170h60v60H30zM170 170h60v60h-60zM240 170h60v60h-60zM310 170h60v60h-60z"/>
5
+ <path fill="#FE2E5F" d="M100 200h60v60h-60z"/>
6
+ </svg>
@@ -175,9 +175,7 @@ var DesktopAgentBridge = class extends EventEmitter {
175
175
  conversation.reconnectTimer = null;
176
176
  if (!conversation.reconnectUrl) return;
177
177
  if (conversation.ws?.readyState !== WebSocket.OPEN) {
178
- void this.connect(conversation.runtimeId, conversation.reconnectUrl).catch(
179
- () => void 0
180
- );
178
+ void this.connect(conversation.runtimeId, conversation.reconnectUrl).catch(() => void 0);
181
179
  }
182
180
  }, reconnect.plan.delayMs);
183
181
  }