You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add missing async/await to graph children/parents commands (qa-autopilot)
Both children() and parents() in graph.ts call async adapter methods
(getChildrenModels, getParentModels) without await, returning unresolved
Promises. The callers in index.ts also miss the outer await, unlike all
other switch cases.
Effects:
- JSON.stringify(Promise) produces {} — empty output
- adapter.dispose() fires before the Promise settles, crashing the bridge
0 commit comments