Fix button-title (#690)

This commit is contained in:
Nathan Mattes 2022-12-22 19:26:37 +01:00
parent 9806c2aa84
commit 4ebd2bded7
1 changed files with 2 additions and 2 deletions

View File

@ -320,9 +320,9 @@ extension MastodonPickServerViewModel: PickServerCategoryCollectionViewCellDeleg
case .signupSpeed(_):
let doesntMatterAction = UIAction(title: L10n.Scene.ServerPicker.SignupSpeed.all) { action in
let doesntMatterAction = UIAction(title: L10n.Scene.ServerPicker.SignupSpeed.all) { _ in
self.manualApprovalRequired.value = nil
cell.titleLabel.text = action.title
cell.titleLabel.text = L10n.Scene.ServerPicker.Button.signupSpeed
}
let manualApprovalAction = UIAction(title: L10n.Scene.ServerPicker.SignupSpeed.manuallyReviewed) { action in