From f45e58e057284830527a258d3d47ef4fa2d04e7e Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 15 Dec 2025 14:38:05 -0600 Subject: [PATCH] [AAv2] Add blurb for orgs (#9556) * Add blurb for orgs * Update --- src/ageAssurance/components/NoAccessScreen.tsx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/ageAssurance/components/NoAccessScreen.tsx b/src/ageAssurance/components/NoAccessScreen.tsx index a8667bf0c5..8b2a44c267 100644 --- a/src/ageAssurance/components/NoAccessScreen.tsx +++ b/src/ageAssurance/components/NoAccessScreen.tsx @@ -120,6 +120,15 @@ export function NoAccessScreen() { ) + const orgAdmonition = ( + + + For organizational accounts, use the birthdate of the person who is + responsible for the account. + + + ) + return ( <> @@ -166,6 +175,8 @@ export function NoAccessScreen() { {!isBlocked && birthdateUpdateText} + + {orgAdmonition} @@ -180,6 +191,8 @@ export function NoAccessScreen() { {birthdateUpdateText} + + {orgAdmonition} )} @@ -211,7 +224,7 @@ export function NoAccessScreen() { - {isUsingAppPassword && ( + {isUsingAppPassword ? ( 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. + ) : ( + orgAdmonition )} )}