Compare commits

...

3 Commits

Author SHA1 Message Date
Eric Bailey d724d2e933 Simplify UI copy 2026-05-26 10:34:30 -05:00
surfdude29 da65e65f05 Merge branch 'bluesky-social:main' into claude/age-verification-australia-DZpef 2026-05-18 18:23:22 +01:00
Claude 10bbd3230a 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.
2026-05-17 18:54:38 +00:00
+4 -11
View File
@@ -308,17 +308,10 @@ export function StepInfo({
<Admonition.Icon />
<Admonition.Content>
<Admonition.Text>
{!isOverAppMinAccessAge ? (
<Plural
value={MIN_ACCESS_AGE}
other="You must be # years of age or older to create an account."
/>
) : (
<Plural
value={aaRegionConfig.minAccessAge}
other="You must be # years of age or older to create an account in your region."
/>
)}
<Plural
value={aaRegionConfig.minAccessAge}
other="You must be # years of age or older to create an account in your region."
/>
</Admonition.Text>
{IS_NATIVE &&
!isDeviceGeolocationGranted &&