Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrentka committed Feb 20, 2024
1 parent 9356363 commit e75062e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ extension AnnotationEditViewController: UITableViewDataSource {
case .fontSize:
if let cell = cell as? FontSizeCell {
cell.set(value: self.viewModel.state.fontSize)
cell.valueObservable.subscribe(onNext: { value in self.viewModel.process(action: .setFontSize(value)) }).disposed(by: cell.newDisposeBag)
cell.valueObservable.subscribe(onNext: { value in self.viewModel.process(action: .setFontSize(value)) }).disposed(by: cell.disposeBag)
}

case .pageLabel:
Expand Down

0 comments on commit e75062e

Please sign in to comment.