diff --git a/Sources/Extensions/UITableView/UITableView+Extensions.swift b/Sources/Extensions/UITableView/UITableView+Extensions.swift index 4eac0278..d6fbdced 100644 --- a/Sources/Extensions/UITableView/UITableView+Extensions.swift +++ b/Sources/Extensions/UITableView/UITableView+Extensions.swift @@ -33,9 +33,9 @@ public extension UITableView { backgroundView.backgroundColor = color addSubview(backgroundView) backgroundView.translatesAutoresizingMaskIntoConstraints = false - NSLayoutConstraint.activate([ backgroundView.leadingAnchor.constraint(equalTo: leadingAnchor), - backgroundView.bottomAnchor.constraint(equalTo: topAnchor), - backgroundView.widthAnchor.constraint(equalTo: widthAnchor), - backgroundView.heightAnchor.constraint(equalTo: heightAnchor)]) + NSLayoutConstraint.activate([backgroundView.leadingAnchor.constraint(equalTo: leadingAnchor), + backgroundView.bottomAnchor.constraint(equalTo: topAnchor), + backgroundView.widthAnchor.constraint(equalTo: widthAnchor), + backgroundView.heightAnchor.constraint(equalTo: heightAnchor)]) } }