From 6f6c21d3490b8740bdc51c2e0a60c8481dba7b22 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 1 Jul 2026 15:56:41 -0500 Subject: [PATCH] Update NoAccessScreen CTA --- src/ageAssurance/components/NoAccessScreen.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ageAssurance/components/NoAccessScreen.tsx b/src/ageAssurance/components/NoAccessScreen.tsx index 59e2d91d11..6e323b7f03 100644 --- a/src/ageAssurance/components/NoAccessScreen.tsx +++ b/src/ageAssurance/components/NoAccessScreen.tsx @@ -330,10 +330,10 @@ function AccessSection() { ? dateDiff(lastInitiatedAt, new Date(), 'down') : null const allowsDeviceVerification = region && aa.flags.allowsDeviceVerification - const verifyCta = hasInitiated - ? _(msg`Verify again`) - : allowsDeviceVerification - ? _(msg`Share age data`) + const verifyCta = allowsDeviceVerification + ? _(msg`Share age data`) + : hasInitiated + ? _(msg`Verify again`) : _(msg`Verify now`) const [isVerifyingDevice, setIsVerifyingDevice] = useState(false)