fix(rnetwork): show demo members in demo space even when CRM token exists
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
98cd239418
commit
33721819db
|
|
@ -215,7 +215,9 @@ routes.get("/api/graph", async (c) => {
|
|||
const nodeIds = new Set<string>();
|
||||
let isDemoData = false;
|
||||
|
||||
if (!token) {
|
||||
// Demo members: always show in "demo" space, or when no CRM token
|
||||
const useDemoMembers = !token || dataSpace === "demo";
|
||||
if (useDemoMembers) {
|
||||
isDemoData = true;
|
||||
|
||||
// ── Demo: 150 members with delegation-based trust flows ──
|
||||
|
|
|
|||
Loading…
Reference in New Issue