@venturewild/workspace 0.6.19 → 0.6.20

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venturewild/workspace",
3
- "version": "0.6.19",
3
+ "version": "0.6.20",
4
4
  "description": "Claude Code Web — Replit/Lovable-style chat-first browser UI that wraps the AI agent already installed on your machine.",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -629,7 +629,7 @@ export async function createServer(overrides = {}) {
629
629
  // the route isn't deployed yet (or we're on localhost), this silently no-ops and the
630
630
  // ticket still lives locally + shows in the Requests block (the locked degrade).
631
631
  function syncTicket(rec) {
632
- const baseUrl = config.bmoSyncUrl;
632
+ const baseUrl = config.bmoSyncServerUrl;
633
633
  if (!baseUrl || baseUrl.startsWith('http://127') || baseUrl.startsWith('http://localhost')) return;
634
634
  const ctrl = new AbortController();
635
635
  const t = setTimeout(() => ctrl.abort(), 5000);