Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrentka committed Jan 9, 2024
1 parent 408ff28 commit 64c92d4
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 64c92d4

Please sign in to comment.