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
Replace .ToArray() with .ToList() to allow dynamic modification of network_nodes
Replaced .ToArray() with .ToList() to resolve the issue where .Add() was called on a fixed-size array. Lists allow dynamic modification, preventing the "Collection was of a fixed size" error.
0 commit comments