diff options
Diffstat (limited to 'src/state/ageAssurance/index.tsx')
-rw-r--r-- | src/state/ageAssurance/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/ageAssurance/index.tsx b/src/state/ageAssurance/index.tsx index 6cdd8d929..23133046a 100644 --- a/src/state/ageAssurance/index.tsx +++ b/src/state/ageAssurance/index.tsx @@ -28,11 +28,13 @@ const AgeAssuranceContext = createContext<AgeAssuranceContextType>({ lastInitiatedAt: undefined, isAgeRestricted: false, }) +AgeAssuranceContext.displayName = 'AgeAssuranceContext' const AgeAssuranceAPIContext = createContext<AgeAssuranceAPIContextType>({ // @ts-ignore can't be bothered to type this refetch: () => Promise.resolve(), }) +AgeAssuranceAPIContext.displayName = 'AgeAssuranceAPIContext' /** * Low-level provider for fetching age assurance state on app load. Do not add |