Skip to content

Commit

Permalink
🐛 Fix: 신간 도서 더보기 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
kayeon2 committed Dec 5, 2024
1 parent daaa5a8 commit d1b0e5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class HomeViewController: UIViewController {
case .success(let newBooks):
self?.latestBooks.append(contentsOf: newBooks)
DispatchQueue.main.async {
self?.homeView.homeCollectionView.reloadSections(IndexSet(integer: 5))
self?.homeView.homeCollectionView.reloadSections(IndexSet(integer: 6))
}
case .failure(let error):
print("Error fetching more latest books: \(error.localizedDescription)")
Expand Down

0 comments on commit d1b0e5b

Please sign in to comment.