I’ve done the sign in and up which work but now i’d like users to login only if their email is verified. Using the flow functions, I use HTTP request (Firebase Auth REST API) to get user data and receive the JSON (I checked this output using the toast) which includes the string “emailVerified”, I isolate this by setting pageVars.emailVerified to outputs[“getUserData”].resBody[“emailVerified”], then use if flow function so If pageVars.emailVerified == true, then dismiss initial view. Is there anything I’m doing wrong?