Skip to content

Commit 35686dc

Browse files
authored
Merge pull request #417 from sopt-makers/fix/#416-pokeonboarding-refresh-push-bug
[Fix] #416 - PokeOnboarding 새로고침 시 Push 계속 되는 현상 수정
2 parents 426a2cf + 5c0e451 commit 35686dc

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

SOPT-iOS/Projects/Features/DailySoptuneFeature/Project.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ import DependencyPlugin
1212
let project = Project.makeModule(
1313
name: "DailySoptuneFeature",
1414
targets: [.unitTest, .staticFramework, .demo, .interface],
15+
internalDependencies: [
16+
.Features.Poke.Interface
17+
],
1518
interfaceDependencies: [
1619
.Features.BaseFeatureDependency
1720
]

SOPT-iOS/Projects/Features/PokeFeature/Sources/PokeOnboardingScene/SubViews/Cell/PokeOnboardingCollectionViewCell.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,9 @@ extension PokeOnboardingCollectionViewCell {
5454
private func setupConstraints() {
5555
self.sectionView.snp.makeConstraints { $0.directionalEdges.equalToSuperview() }
5656
}
57+
58+
public override func prepareForReuse() {
59+
super.prepareForReuse()
60+
self.cancelBag = CancelBag()
61+
}
5762
}

0 commit comments

Comments
 (0)