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
/// If the key already exists in `used`, then a workflow of the same type has been rendered multiple times
196
-
/// during this render pass with the same key. This is not allowed.
197
-
guardusedChildWorkflows[childKey]==nilelse{
198
-
fatalError("Child workflows of the same type must be given unique keys. Duplicate workflows of type \(Child.self) were encountered with the key \"\(key)\" in \(WorkflowType.self)")
/// If the key was already in `used`, then a workflow of the same type was rendered multiple times
232
+
/// during this render pass with the same key. This is not allowed.
233
+
precondition(keyWasUnused,"Child workflows of the same type must be given unique keys. Duplicate workflows of type \(Child.self) were encountered with the key \"\(key)\" in \(WorkflowType.self)")
0 commit comments