@venturewild/workspace 0.6.19 → 0.6.21
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
package/server/src/index.mjs
CHANGED
|
@@ -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.
|
|
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);
|