We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c55fe09 commit 7285d37Copy full SHA for 7285d37
Adamant/Modules/Settings/VisibleWallets/VisibleWalletsViewController.swift
@@ -109,8 +109,8 @@ final class VisibleWalletsViewController: KeyboardObservingViewController {
109
.sink { [weak self] _ in
110
guard let self = self else { return }
111
let indexPath = IndexPath(row: index, section: 0)
112
- if let cell = self.tableView.cellForRow(at: indexPath) as? VisibleWalletsTableViewCell {
113
- cell.balance = wallet.wallet?.balance
+ UIView.performWithoutAnimation { [weak self] in
+ self?.tableView.reloadRows(at: [indexPath], with: .none)
114
}
115
116
.store(in: &subscriptions)
0 commit comments