From 0c83a8257c5021e85614684a041d0967b8087183 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 31 Mar 2026 10:04:25 -0700 Subject: [PATCH] fix: enable presence and collab sync for demo space users Remove the demo exclusion guard so demo space gets the full offline runtime, WebSocket presence relay, and Automerge sync. Co-Authored-By: Claude Opus 4.6 --- website/shell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/shell.ts b/website/shell.ts index d1bb047..dbfc53a 100644 --- a/website/shell.ts +++ b/website/shell.ts @@ -53,7 +53,7 @@ RStackUserDashboard.define(); // Instantiate the shared runtime from the space slug on the tag. // Components access it via window.__rspaceOfflineRuntime. const spaceSlug = document.body?.getAttribute("data-space-slug"); -if (spaceSlug && spaceSlug !== "demo") { +if (spaceSlug) { const runtime = new RSpaceOfflineRuntime(spaceSlug); (window as any).__rspaceOfflineRuntime = runtime;