[AAv2] Add blurb for orgs (#9556)

* Add blurb for orgs

* Update

(cherry picked from commit f45e58e057)
This commit is contained in:
Eric Bailey
2025-12-15 14:38:05 -06:00
parent 9b8e1ee5dd
commit 81c244fd8e
+16 -1
View File
@@ -120,6 +120,15 @@ export function NoAccessScreen() {
</Text> </Text>
) )
const orgAdmonition = (
<Admonition type="tip">
<Trans>
For organizational accounts, use the birthdate of the person who is
responsible for the account.
</Trans>
</Admonition>
)
return ( return (
<> <>
<View style={[a.util_screen_outer, a.flex_1]}> <View style={[a.util_screen_outer, a.flex_1]}>
@@ -166,6 +175,8 @@ export function NoAccessScreen() {
</Text> </Text>
{!isBlocked && birthdateUpdateText} {!isBlocked && birthdateUpdateText}
{orgAdmonition}
</View> </View>
<AccessSection /> <AccessSection />
@@ -180,6 +191,8 @@ export function NoAccessScreen() {
</Text> </Text>
{birthdateUpdateText} {birthdateUpdateText}
{orgAdmonition}
</View> </View>
)} )}
</> </>
@@ -211,7 +224,7 @@ export function NoAccessScreen() {
</ButtonText> </ButtonText>
</Button> </Button>
{isUsingAppPassword && ( {isUsingAppPassword ? (
<Admonition type="info"> <Admonition type="info">
<Trans> <Trans>
Hmm, it looks like you're logged in with an{' '} Hmm, it looks like you're logged in with an{' '}
@@ -220,6 +233,8 @@ export function NoAccessScreen() {
password, or ask whomever controls this account to do so. password, or ask whomever controls this account to do so.
</Trans> </Trans>
</Admonition> </Admonition>
) : (
orgAdmonition
)} )}
</View> </View>
)} )}