From d9262e83c0d96a17e4f8a08fd1ffc186246039ae Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Fri, 6 Mar 2026 17:52:17 -0800 Subject: [PATCH] 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 --- api/config/environment.cfm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/config/environment.cfm b/api/config/environment.cfm index 45c3589..93f8737 100644 --- a/api/config/environment.cfm +++ b/api/config/environment.cfm @@ -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"];