mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-22 22:48:08 -05:00
The graph builders used awaited functions within `Array.prototype.forEach` loops. This doesn't do what you'd think. This caused graphs to be enqueued before they were fully constructed. Changed to `for..of` loops to fix this.