Skip to content

Commit

Permalink
Merge pull request #417 from sopt-makers/fix/#416-pokeonboarding-refr…
Browse files Browse the repository at this point in the history
…esh-push-bug

[Fix] #416 - PokeOnboarding 새로고침 시 Push 계속 되는 현상 수정
  • Loading branch information
dlwogus0128 authored Oct 22, 2024
2 parents 426a2cf + 5c0e451 commit 35686dc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions SOPT-iOS/Projects/Features/DailySoptuneFeature/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ import DependencyPlugin
let project = Project.makeModule(
name: "DailySoptuneFeature",
targets: [.unitTest, .staticFramework, .demo, .interface],
internalDependencies: [
.Features.Poke.Interface
],
interfaceDependencies: [
.Features.BaseFeatureDependency
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}

0 comments on commit 35686dc

Please sign in to comment.