Fixed Extraneous argument label 'status:' in call for Apple App setup in step 3 for setSelfSigned method.

This commit is contained in:
Erez Hod
2023-06-24 19:25:42 +03:00
parent 58813c1bba
commit 7894a1cd4d
@@ -10,7 +10,7 @@
let client = Client()
.setEndpoint("${endpoint}")
.setProject("${project}")
.setSelfSigned(status: true) // For self signed certificates, only use for development`;
.setSelfSigned(true) // For self signed certificates, only use for development`;
let showAlert = true;
</script>