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;