Skip to content

Commit

Permalink
fix: check for isData
Browse files Browse the repository at this point in the history
  • Loading branch information
vcellu committed Oct 6, 2022
1 parent 66e76e6 commit 630d34d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/ContainerView.swift
Expand Up @@ -571,7 +571,7 @@ class ContainerView: UIView {
let headerHeight = tableTheme?.headerHeight ?? 54
var y = headerHeight
if let totals = totals {
if totals.position != "bottom" {
if totals.position != "bottom" && !isDataView {
y += headerHeight
}
}
Expand Down

0 comments on commit 630d34d

Please sign in to comment.