@swan-io/lake 4.1.0 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swan-io/lake",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "engines": {
5
5
  "node": ">=18.0.0",
6
6
  "yarn": "^1.22.0"
@@ -195,7 +195,7 @@ export const PlainListView = ({ data: originalData, keyExtractor, rowHeight, gro
195
195
  large && styles.stickyHeaderLarge,
196
196
  {
197
197
  height: groupHeaderHeight,
198
- top: stickyOffset + groupHeaderHeight,
198
+ top: stickyOffset + (large ? headerHeight : 0),
199
199
  },
200
200
  ], children: _jsx(LakeHeading, { level: 3, variant: "h3", children: groupName }) })) : null, items.map((item, index) => {
201
201
  const key = keyExtractor(item, index);