From 10bbd3230a68186ec02c83eef64ff07607a700d9 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 17 May 2026 18:54:38 +0000 Subject: [PATCH] Show regional age error for under-13 users in restricted regions When a region has a stricter minimum age than the global minimum (e.g., 16 in Australia), users entering a birthdate below 13 were shown the global "must be 13" message instead of the regional "must be 16" one. Select the message based on whether the region has a stricter minimum, not on which threshold the user falls under. Any birthdate below the regional minimum now consistently shows the regional message. --- src/screens/Signup/StepInfo/index.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index af6b01df43..e679df10a4 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -308,16 +308,16 @@ export function StepInfo({ - {!isOverAppMinAccessAge ? ( - - ) : ( + {aaRegionConfig.minAccessAge > MIN_ACCESS_AGE ? ( + ) : ( + )} {IS_NATIVE &&