Re-enable magic OTP on production for App Store review
The revert from the other session disabled this. 123456 must work alongside real codes on production for Apple reviewer testing. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
d7c9ae23ef
commit
d9262e83c0
1 changed files with 3 additions and 3 deletions
|
|
@ -45,9 +45,9 @@ application.emailEnabled = !isDevEnvironment ? true : false; // Disable emails
|
|||
// ============================================
|
||||
// MAGIC OTP (for testing)
|
||||
// ============================================
|
||||
// Dev: Allow magic phone number to bypass OTP
|
||||
// Prod: Disabled
|
||||
application.MAGIC_OTP_ENABLED = isDevEnvironment;
|
||||
// Enabled on both dev and production for App Store review
|
||||
// Code 123456 will work for any phone number
|
||||
application.MAGIC_OTP_ENABLED = true;
|
||||
application.MAGIC_OTP_CODE = "123456";
|
||||
application.MAGIC_PHONE_NUMBERS = ["5555555555", "0000000000"];
|
||||
|
||||
|
|
|
|||
Reference in a new issue