diff --git a/src/state/ageAssurance/index.tsx b/src/state/ageAssurance/index.tsx index 6cdd8d9299..bc5c980712 100644 --- a/src/state/ageAssurance/index.tsx +++ b/src/state/ageAssurance/index.tsx @@ -101,7 +101,8 @@ export function Provider({children}: {children: React.ReactNode}) { isReady: isFetched || !isAgeAssuranceEnabled, status, lastInitiatedAt, - isAgeRestricted: isAgeAssuranceEnabled ? status !== 'assured' : false, + isAgeRestricted: + isFetched && isAgeAssuranceEnabled ? status !== 'assured' : false, } logger.debug(`context`, ctx) return ctx