fix(@desktop/communities): Restart fee timer only when the dialog is opened

Fix #11921
This commit is contained in:
Michal Iskierko 2023-08-17 12:08:02 +02:00 committed by Michał Iskierko
parent 5b2a7b9264
commit d031072514
1 changed files with 3 additions and 1 deletions

View File

@ -168,7 +168,9 @@ StatusDialog {
allTokensButton.checked
feesBox.accountsSelector.currentIndex
requestFeeDelayTimer.restart()
if (root.opened) {
requestFeeDelayTimer.restart()
}
return true
}