Bluesky app fork with some witchin' additions 💫

If birth date is not set, ensure AA still shows (#8709)

authored by

Eric Bailey and committed by
GitHub
3775aeb1 6a7b8a27

+2 -1
+2 -1
src/state/ageAssurance/useAgeAssurance.ts
··· 28 28 29 29 return useMemo(() => { 30 30 const isReady = aa.isReady && preferencesLoaded 31 - const isDeclaredUnderage = (declaredAge || 0) < 18 31 + const isDeclaredUnderage = 32 + declaredAge !== undefined ? declaredAge < 18 : false 32 33 const state: AgeAssurance = { 33 34 isReady, 34 35 status: aa.status,