Skip to content

Commit

Permalink
[#121] fix: separate line 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
realokstring committed Jun 29, 2021
1 parent 5830a34 commit 1e9b5e9
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ extension FilterViewController: UITableViewDelegate {
self?.gettingFilterdListHandler?([selectedCategory.rawValue: selectedItem.id])
}
}

func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return UIView()
}

func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 1
}
}

extension FilterViewController: UITableViewDataSource {
Expand Down

0 comments on commit 1e9b5e9

Please sign in to comment.