diff --git a/interface/resources/qml/hifi/commerce/purchases/PurchasedItem.qml b/interface/resources/qml/hifi/commerce/purchases/PurchasedItem.qml index 8a20a55141..a7b36eae36 100644 --- a/interface/resources/qml/hifi/commerce/purchases/PurchasedItem.qml +++ b/interface/resources/qml/hifi/commerce/purchases/PurchasedItem.qml @@ -422,7 +422,7 @@ Item { verticalAlignment: Text.AlignVCenter; onLinkActivated: { - if(link == "#standaloneIncompatible") { + if (link === "#standaloneIncompatible") { sendToPurchases({method: 'showStandaloneIncompatibleExplanation'}); } else { sendToPurchases({method: 'showPermissionsExplanation', itemType: root.itemType}); diff --git a/interface/resources/qml/hifi/commerce/purchases/Purchases.qml b/interface/resources/qml/hifi/commerce/purchases/Purchases.qml index 4b285e5402..311c20d120 100644 --- a/interface/resources/qml/hifi/commerce/purchases/Purchases.qml +++ b/interface/resources/qml/hifi/commerce/purchases/Purchases.qml @@ -114,7 +114,6 @@ Rectangle { Component.onCompleted: { isStandalone = PlatformInfo.isStandalone(); - console.log(isStandalone ? "IS STANDALONE" : "ISN'T STANDALONE"); } HifiCommerceCommon.CommerceLightbox {