From a466747c5e7d8072100108110d95c22f5d0577dd Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 30 Oct 2024 11:45:20 -0400 Subject: [PATCH] fix(airdrop): fix wording of the error when selecting the wrong account (#16632) Fixes #16562 --- ui/app/AppLayouts/Communities/helpers/AirdropFeesSubscriber.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Communities/helpers/AirdropFeesSubscriber.qml b/ui/app/AppLayouts/Communities/helpers/AirdropFeesSubscriber.qml index 142dad70d7..3f2d0cc555 100644 --- a/ui/app/AppLayouts/Communities/helpers/AirdropFeesSubscriber.qml +++ b/ui/app/AppLayouts/Communities/helpers/AirdropFeesSubscriber.qml @@ -47,7 +47,7 @@ QtObject { return qsTr("Infura error") if (airdropFeesResponse.errorCode === Constants.ComputeFeeErrorCode.Revert) - return qsTr("Estimation reverted. Make sure you are using the account that owns the TokenMaster or Owner Token.") + return qsTr("Estimation reverted. Make sure you selected the Wallet account that owns the TokenMaster or Owner Token.") return qsTr("Unknown error") }