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

@@ -49,8 +49,7 @@ class _WalletFormState extends State<WalletForm> {
return;
}
if (newData != null &&
newData.walletId != _walletIdController.text) {
if (newData != null && newData != oldData) {
_walletIdController.text = newData.walletId;
}
}
@@ -68,4 +67,4 @@ class _WalletFormState extends State<WalletForm> {
validator: (val) => (val?.isEmpty ?? true) ? l10n.enterWalletId : null,
);
}
}
}