Revert "Merge branch 'devKA' into devka (resolve conflicts)"
Some checks are pending
ci/woodpecker/push/bump_version Pipeline is pending
ci/woodpecker/push/fx_oracle Pipeline is pending
ci/woodpecker/push/ledger Pipeline is pending
ci/woodpecker/push/nats Pipeline is pending
ci/woodpecker/push/notification Pipeline is pending
ci/woodpecker/push/payments_orchestrator Pipeline is pending
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/frontend Pipeline is running
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline is running

This reverts commit 5f4184760d, reversing
changes made to 5e1da9617f.

Reverting changes on main
This commit is contained in:
Arseni
2025-12-04 15:38:01 +03:00
parent 5f4184760d
commit 3b04753f4e
7 changed files with 126 additions and 308 deletions

View File

@@ -45,7 +45,6 @@ class PageSelectorProvider extends ChangeNotifier {
}
void selectPage(PayoutDestination dest) {
if (_selected == dest) return;
_selected = dest;
notifyListeners();
}
@@ -96,7 +95,7 @@ class PageSelectorProvider extends ChangeNotifier {
notifyListeners();
}
PayoutDestination goBackFromPayment() {
void goBackFromPayment() {
_selected = _previousDestination ??
(_cameFromRecipientList
? PayoutDestination.recipients
@@ -105,7 +104,6 @@ class PageSelectorProvider extends ChangeNotifier {
_previousDestination = null;
_cameFromRecipientList = false;
notifyListeners();
return _selected;
}
void goBackFromWalletEdit() {
@@ -188,4 +186,4 @@ class PageSelectorProvider extends ChangeNotifier {
Recipient? get selectedRecipient => recipientProvider?.selectedRecipient;
Wallet? get selectedWallet => walletsProvider?.selectedWallet;
}
}