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 </Text> 121 ) 122 123 return ( 124 <> 125 <View style={[a.util_screen_outer, a.flex_1]}> ··· 166 </Text> 167 168 {!isBlocked && birthdateUpdateText} 169 </View> 170 171 <AccessSection /> ··· 180 </Text> 181 182 {birthdateUpdateText} 183 </View> 184 )} 185 </> ··· 211 </ButtonText> 212 </Button> 213 214 - {isUsingAppPassword && ( 215 <Admonition type="info"> 216 <Trans> 217 Hmm, it looks like you're logged in with an{' '} ··· 220 password, or ask whomever controls this account to do so. 221 </Trans> 222 </Admonition> 223 )} 224 </View> 225 )}
··· 120 </Text> 121 ) 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 + 132 return ( 133 <> 134 <View style={[a.util_screen_outer, a.flex_1]}> ··· 175 </Text> 176 177 {!isBlocked && birthdateUpdateText} 178 + 179 + {orgAdmonition} 180 </View> 181 182 <AccessSection /> ··· 191 </Text> 192 193 {birthdateUpdateText} 194 + 195 + {orgAdmonition} 196 </View> 197 )} 198 </> ··· 224 </ButtonText> 225 </Button> 226 227 + {isUsingAppPassword ? ( 228 <Admonition type="info"> 229 <Trans> 230 Hmm, it looks like you're logged in with an{' '} ··· 233 password, or ask whomever controls this account to do so. 234 </Trans> 235 </Admonition> 236 + ) : ( 237 + orgAdmonition 238 )} 239 </View> 240 )}