WIP: ban & delete toast

pull/1023/head
Ryan ZHAO 9 months ago
parent 77e9a1d29a
commit 394bd19c96

@ -2342,17 +2342,21 @@ extension ConversationVC:
receiveCompletion: { result in
switch result {
case .finished:
DispatchQueue.main.async { [weak self] in
self?.viewModel.showToast(
text: "banUserBanned".localized(),
backgroundColor: .backgroundSecondary
)
}
case .failure:
DispatchQueue.main.async { [weak self] in
self?.viewModel.showToast(
text: "banErrorFailed".localized(),
backgroundColor: .backgroundSecondary
)
}
}
}
)
self?.becomeFirstResponder()
@ -2397,17 +2401,21 @@ extension ConversationVC:
receiveCompletion: { result in
switch result {
case .finished:
DispatchQueue.main.async { [weak self] in
self?.viewModel.showToast(
text: "banUserBanned".localized(),
backgroundColor: .backgroundSecondary
)
}
case .failure:
DispatchQueue.main.async { [weak self] in
self?.viewModel.showToast(
text: "banErrorFailed".localized(),
backgroundColor: .backgroundSecondary
)
}
}
}
)
self?.becomeFirstResponder()

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save