Bluesky app fork with some witchin' additions 💫

[AAv2] Add blurb for orgs (#9556)

* Add blurb for orgs

* Update

authored by

Eric Bailey and committed by
GitHub
f45e58e0 da87515d

+16 -1
+16 -1
src/ageAssurance/components/NoAccessScreen.tsx
··· 120 120 </Text> 121 121 ) 122 122 123 + const orgAdmonition = ( 124 + <Admonition type="tip"> 125 + <Trans> 126 + For organizational accounts, use the birthdate of the person who is 127 + responsible for the account. 128 + </Trans> 129 + </Admonition> 130 + ) 131 + 123 132 return ( 124 133 <> 125 134 <View style={[a.util_screen_outer, a.flex_1]}> ··· 166 175 </Text> 167 176 168 177 {!isBlocked && birthdateUpdateText} 178 + 179 + {orgAdmonition} 169 180 </View> 170 181 171 182 <AccessSection /> ··· 180 191 </Text> 181 192 182 193 {birthdateUpdateText} 194 + 195 + {orgAdmonition} 183 196 </View> 184 197 )} 185 198 </> ··· 211 224 </ButtonText> 212 225 </Button> 213 226 214 - {isUsingAppPassword && ( 227 + {isUsingAppPassword ? ( 215 228 <Admonition type="info"> 216 229 <Trans> 217 230 Hmm, it looks like you're logged in with an{' '} ··· 220 233 password, or ask whomever controls this account to do so. 221 234 </Trans> 222 235 </Admonition> 236 + ) : ( 237 + orgAdmonition 223 238 )} 224 239 </View> 225 240 )}