preTesting

This commit is contained in:
2026-05-05 03:56:11 -05:00
parent 14d026841f
commit 39428b4451
12 changed files with 142 additions and 181 deletions

View File

@@ -19,7 +19,7 @@ class _VerificationWaitingScreenState extends BaseVerificationWaitingScreenState
String get title => "Verify Your Email";
@override
String get mainMessage => "We've sent a verification link to your email from blindmasterapp@wahwa.com";
String get mainMessage => "We've sent a verification link to your email from account-services@blindmaster.wahwa.com";
@override
String get instructionMessage => "Click the link in the email to verify your account. This page will automatically update once verified.";
@@ -29,7 +29,7 @@ class _VerificationWaitingScreenState extends BaseVerificationWaitingScreenState
@override
Future<bool> checkStatus() async {
final uri = Uri.parse('https://wahwa.com').replace(path: 'verification_status');
final uri = Uri.parse('https://blindmaster.wahwa.com').replace(path: 'verification_status');
final response = await http.get(
uri,
@@ -49,7 +49,7 @@ class _VerificationWaitingScreenState extends BaseVerificationWaitingScreenState
@override
Future<void> resendVerification() async {
final localHour = DateTime.now().hour;
final uri = Uri.parse('https://wahwa.com').replace(path: 'resend_verification');
final uri = Uri.parse('https://blindmaster.wahwa.com').replace(path: 'resend_verification');
final response = await http.post(
uri,