Skip to content

Commit 0d6b3bf

Browse files
authored
Merge pull request #1329 from wakmusic/1328-open-source-license-data-is-empty
2 parents 77afa4f + 0818756 commit 0d6b3bf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Projects/Features/MyInfoFeature/Sources/ViewControllers/OpenSourceLicense/OpenSourceLicenseViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public class OpenSourceLicenseViewController: UIViewController, ViewControllerFr
2525
override public func viewDidLoad() {
2626
super.viewDidLoad()
2727
configureUI()
28-
inputBind()
2928
outputBind()
29+
inputBind()
3030
bindBtn()
3131
}
3232

Projects/Features/MyInfoFeature/Sources/ViewModels/OpenSourceLicenseViewModel.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ public final class OpenSourceLicenseViewModel: Sendable {
2424
let dataSource: BehaviorRelay<[OpenSourceLicense]> = BehaviorRelay(value: [])
2525
}
2626

27-
init() {}
27+
init() {
28+
bind()
29+
}
2830

2931
func bind() {
3032
input.viewDidLoad.bind { [weak self] in

0 commit comments

Comments
 (0)