Fix build (IOS-157)

This commit is contained in:
Nathan Mattes 2023-05-23 12:45:13 +02:00
parent ce897a0e05
commit 9c19bf2985
1 changed files with 1 additions and 1 deletions

View File

@ -380,7 +380,7 @@ extension ProfileViewController {
profileHeaderViewController.profileHeaderView.viewModel.$name
.receive(on: DispatchQueue.main)
.sink { [weak self] name in
guard let self = self, isModal == false else { return }
guard let self = self, self.isModal == false else { return }
self.navigationItem.title = name
}
.store(in: &disposeBag)