From 9eeef926cafa6ec8ad87430c00f3ffc2d1735cb8 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 15 Dec 2025 13:54:40 -0600 Subject: [PATCH] Add blurb for orgs --- 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..8b417b05ce 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 controlling + 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 )} )}