From d1b0e5bc9bed7b4bddf1b3858230465e07f02429 Mon Sep 17 00:00:00 2001 From: kayeon2 Date: Thu, 5 Dec 2024 20:55:46 +0900 Subject: [PATCH] =?UTF-8?q?:bug:=20Fix:=20=EC=8B=A0=EA=B0=84=20=EB=8F=84?= =?UTF-8?q?=EC=84=9C=20=EB=8D=94=EB=B3=B4=EA=B8=B0=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Home/ViewControllers/HomeViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UMC-7th-TEAM-IOS-FE/Home/ViewControllers/HomeViewController.swift b/UMC-7th-TEAM-IOS-FE/Home/ViewControllers/HomeViewController.swift index e438ddc..7a55ef7 100644 --- a/UMC-7th-TEAM-IOS-FE/Home/ViewControllers/HomeViewController.swift +++ b/UMC-7th-TEAM-IOS-FE/Home/ViewControllers/HomeViewController.swift @@ -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)")