Skip to content

Commit fe1f3b9

Browse files
authored
Fix layout issue (#58)
1 parent f64031d commit fe1f3b9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Sources/CollectionView/CollectionView.swift

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ public struct CollectionView<
1919
}
2020

2121
public var body: some View {
22-
ModifiedContent(
23-
content: content,
24-
modifier: layout
25-
)
22+
Group {
23+
ModifiedContent(
24+
content: content,
25+
modifier: layout
26+
)
27+
}
2628
}
2729

2830
}

0 commit comments

Comments
 (0)