Skip to content

Commit 2d0727c

Browse files
committed
Fix crash when deleting nested variants.
1 parent 17f0261 commit 2d0727c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/api/nodes/variance_node.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class VarianceNode extends SinglePlaceholderNode {
2626
List<String> get allVariantsChildren =>
2727
variants.expand((e) => e.children).toList();
2828

29-
/// Get all the children from the all the variants except the currently loaded
29+
/// Get all the children from all the variants except the currently loaded
3030
/// variant.
3131
List<String> get unloadedVariantsChildren => variants
3232
.where((element) => element.id != currentVariantId)

0 commit comments

Comments
 (0)