Skip to content

Commit

Permalink
🐛 :: [#1328] Open Source 라이센스 페이지 데이터 미노출
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Dec 8, 2024
1 parent 2329b98 commit a378c97
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ public class OpenSourceLicenseViewController: UIViewController, ViewControllerFr
override public func viewDidLoad() {
super.viewDidLoad()
configureUI()
outputBind()
inputBind()
outputBind()
bindBtn()
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import Foundation
@preconcurrency import RxCocoa
@preconcurrency import RxSwift
import LogManager
import Utility

public final class OpenSourceLicenseViewModel: Sendable {
Expand All @@ -24,7 +25,9 @@ public final class OpenSourceLicenseViewModel: Sendable {
let dataSource: BehaviorRelay<[OpenSourceLicense]> = BehaviorRelay(value: [])
}

init() {}
init() {
bind()
}

func bind() {
input.viewDidLoad.bind { [weak self] in
Expand Down

0 comments on commit a378c97

Please sign in to comment.