From 263807fc40e531386faef20c0eba0a0a095887cf Mon Sep 17 00:00:00 2001 From: dlwogus0128 <79050615+dlwogus0128@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:34:11 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[Fix]=20#416=20-=20prepareForReuse=EC=97=90?= =?UTF-8?q?=EC=84=9C=20cancelbag=20=EC=B4=88=EA=B8=B0=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SubViews/Cell/PokeOnboardingCollectionViewCell.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeOnboardingScene/SubViews/Cell/PokeOnboardingCollectionViewCell.swift b/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeOnboardingScene/SubViews/Cell/PokeOnboardingCollectionViewCell.swift index 78c0e865..89e84e41 100644 --- a/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeOnboardingScene/SubViews/Cell/PokeOnboardingCollectionViewCell.swift +++ b/SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeOnboardingScene/SubViews/Cell/PokeOnboardingCollectionViewCell.swift @@ -54,4 +54,9 @@ extension PokeOnboardingCollectionViewCell { private func setupConstraints() { self.sectionView.snp.makeConstraints { $0.directionalEdges.equalToSuperview() } } + + public override func prepareForReuse() { + super.prepareForReuse() + self.cancelBag = CancelBag() + } } From 5c0e451ffa1a41e736d69d9e5ffe4914b61b9304 Mon Sep 17 00:00:00 2001 From: dlwogus0128 <79050615+dlwogus0128@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:38:15 +0900 Subject: [PATCH 2/2] =?UTF-8?q?[Fix]=20#416=20-=20DailySoptuneFeature=20->?= =?UTF-8?q?=20PokeInterface=20=EC=9D=98=EC=A1=B4=EC=84=B1=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SOPT-iOS/Projects/Features/DailySoptuneFeature/Project.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SOPT-iOS/Projects/Features/DailySoptuneFeature/Project.swift b/SOPT-iOS/Projects/Features/DailySoptuneFeature/Project.swift index 7c883d38..03344322 100644 --- a/SOPT-iOS/Projects/Features/DailySoptuneFeature/Project.swift +++ b/SOPT-iOS/Projects/Features/DailySoptuneFeature/Project.swift @@ -12,6 +12,9 @@ import DependencyPlugin let project = Project.makeModule( name: "DailySoptuneFeature", targets: [.unitTest, .staticFramework, .demo, .interface], + internalDependencies: [ + .Features.Poke.Interface + ], interfaceDependencies: [ .Features.BaseFeatureDependency ]