diff --git a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml index 9933953fe8..3152a1eed6 100644 --- a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml +++ b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml @@ -1160,14 +1160,14 @@ Rectangle { function authSuccessStep() { if (!root.debugCheckoutSuccess) { root.activeView = "checkoutMain"; - } else { - root.activeView = "checkoutSuccess"; root.ownershipStatusReceived = false; Commerce.alreadyOwned(root.itemId); root.availableUpdatesReceived = false; Commerce.getAvailableUpdates(root.itemId); root.balanceReceived = false; Commerce.balance(); + } else { + root.activeView = "checkoutSuccess"; } }