Fix separator-insets (IOS-245)

This commit is contained in:
Nathan Mattes 2024-04-23 14:33:26 +02:00
parent edc2f71704
commit 0ca3d773b5
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ final class AccountListViewController: UIViewController, NeedsDependency {
tableView.register(LogoutOfAllAccountsCell.self, forCellReuseIdentifier: LogoutOfAllAccountsCell.reuseIdentifier)
tableView.backgroundColor = .clear
tableView.tableFooterView = UIView()
tableView.separatorInset = UIEdgeInsets(top: 0, left: 16, bottom: 0, right: 0)
return tableView
}()