diff --git a/interface/resources/qml/hifi/Pal.qml b/interface/resources/qml/hifi/Pal.qml
index 8814342f02..6f815e79f9 100644
--- a/interface/resources/qml/hifi/Pal.qml
+++ b/interface/resources/qml/hifi/Pal.qml
@@ -921,17 +921,10 @@ Rectangle {
property string notLoggedInInstructions: "You must be logged into your High Fidelity account to make connections.
"
property string instructions:
"When you meet someone you want to remember later, you can connect with a handshake:
"
-
// Text
text:
- Account.isLoggedIn() ?
- HMD.isMounted ?
- instructions + hmdMountedInstructions
- : instructions + hmdNotMountedInstructions
- :
- HMD.isMounted ?
- notLoggedInInstructions + instructions + hmdMountedInstructions
- : notLoggedInInstructions + instructions + hmdNotMountedInstructions
+ Account.isLoggedIn() ? ( HMD.mounted ? instructions + hmdMountedInstructions : instructions + hmdNotMountedInstructions)
+ : ( HMD.mounted ? notLoggedInInstructions + instructions + hmdMountedInstructions : notLoggedInInstructions + instructions + hmdNotMountedInstructions
}
}