diff --git a/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml b/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml index bd0adf7f2f..27e6198973 100644 --- a/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml +++ b/ui/app/AppLayouts/Wallet/panels/WalletFooter.qml @@ -46,15 +46,6 @@ Rectangle { } } - StatusFlatButton { - id: buySellBtn - icon.name: "token" - text: qsTr("Buy / Sell") - onClicked: function () { - Global.openPopup(buySellModal); - } - } - StatusFlatButton { id: bridgeBtn icon.name: "bridge" @@ -64,6 +55,15 @@ Rectangle { sendModal.open() } } + + StatusFlatButton { + id: buySellBtn + icon.name: "token" + text: qsTr("Buy") + onClicked: function () { + Global.openPopup(buySellModal); + } + } } Component { diff --git a/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml b/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml index 05c1ccc879..2b7c3c55cf 100644 --- a/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml +++ b/ui/app/AppLayouts/Wallet/popups/CryptoServicesModal.qml @@ -16,7 +16,7 @@ StatusModal { id: cryptoServicesPopupRoot height: 400 - header.title: qsTr("Buy / Sell crypto") + header.title: qsTr("Buy crypto") anchors.centerIn: parent Loader {