diff --git a/interface/resources/qml/hifi/commerce/wallet/Wallet.qml b/interface/resources/qml/hifi/commerce/wallet/Wallet.qml
index 880efe92e0..8cac728dec 100644
--- a/interface/resources/qml/hifi/commerce/wallet/Wallet.qml
+++ b/interface/resources/qml/hifi/commerce/wallet/Wallet.qml
@@ -177,6 +177,7 @@ Rectangle {
proceedFunction: function (isReset) {
console.log(isReset ? "Reset wallet." : "Trying again with new wallet.");
if (isReset) {
+ walletSetup();
} else {
root.activeView = "initialize";
Commerce.getWalletStatus();
diff --git a/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml b/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml
index f011fe7203..f9e37f0325 100644
--- a/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml
+++ b/interface/resources/qml/hifi/commerce/wallet/WalletChoice.qml
@@ -197,7 +197,6 @@ Item {
"CREATE NEW WALLET" :
"CONTINUE WITH THESE KEYS"
onClicked: {
- if (root.activeView === "preexisting") {
lightboxPopup.titleText = "Are you sure?";
lightboxPopup.bodyText = "Taking this step will abandon your old wallet and you will no " +
"longer be able to access your money and your past purchases.
" +
@@ -208,9 +207,7 @@ Item {
lightboxPopup.button2text = "CLOSE";
lightboxPopup.button2method = "root.visible = false;"
lightboxPopup.visible = true;
- } else {
- console.log('FIXME');
- }
+
}
}