diff --git a/Sources/Classes/Views/EmptyCell/EmptyCell.swift b/Sources/Classes/Views/EmptyCell/EmptyCell.swift index c0cca1b8..718b348b 100644 --- a/Sources/Classes/Views/EmptyCell/EmptyCell.swift +++ b/Sources/Classes/Views/EmptyCell/EmptyCell.swift @@ -45,15 +45,13 @@ public final class EmptyCell: SeparatorCell, AppearanceProtocol, ConfigurableCel } public func configure(appearance: Appearance) { + selectionStyle = .none contentView.backgroundColor = appearance.color } public func configure(with _: Void) { } private func setup() { - backgroundColor = .clear - selectionStyle = .none - configure(appearance: Appearance()) } }