Include a notice during account creation for under-18 users (#927)

This commit is contained in:
Paul Frazee 2023-06-30 11:34:52 -05:00 committed by GitHub
parent c72e24f841
commit 48844aa4c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 4 deletions

View file

@ -116,7 +116,10 @@ export const Step2 = observer(({model}: {model: CreateAccountModel}) => {
</View>
{model.serviceDescription && (
<Policies serviceDescription={model.serviceDescription} />
<Policies
serviceDescription={model.serviceDescription}
needsGuardian={!model.isAge18}
/>
)}
</>
)}