[RN] Change 'Privacy Policty' and 'Terms of Service' to 'Terms and Conditions'
This commit is contained in:
parent
137aace970
commit
96a18ab2d5
|
@ -9,15 +9,10 @@ import { AbstractWelcomePage, mapStateToProps } from './AbstractWelcomePage';
|
||||||
import { styles } from './styles';
|
import { styles } from './styles';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The URL at which the privacy policy is available to the user.
|
* The URL at which the terms and conditions (of service) are available to the
|
||||||
|
* user.
|
||||||
*/
|
*/
|
||||||
const PRIVACY_POLICY_URL = 'https://www.atlassian.com/legal/privacy-policy';
|
const TERMS_AND_CONDITIONS_URL = 'https://jitsi.org/meet/terms';
|
||||||
|
|
||||||
/**
|
|
||||||
* The URL at which the terms of service are available to the user.
|
|
||||||
*/
|
|
||||||
const TERMS_OF_SERVICE_URL
|
|
||||||
= 'https://www.atlassian.com/legal/customer-agreement';
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The native container rendering the welcome page.
|
* The native container rendering the welcome page.
|
||||||
|
@ -83,13 +78,8 @@ class WelcomePage extends AbstractWelcomePage {
|
||||||
<View style = { styles.legaleseContainer }>
|
<View style = { styles.legaleseContainer }>
|
||||||
<Link
|
<Link
|
||||||
style = { styles.legaleseItem }
|
style = { styles.legaleseItem }
|
||||||
url = { PRIVACY_POLICY_URL }>
|
url = { TERMS_AND_CONDITIONS_URL }>
|
||||||
Privacy Policy
|
Terms and Conditions
|
||||||
</Link>
|
|
||||||
<Link
|
|
||||||
style = { styles.legaleseItem }
|
|
||||||
url = { TERMS_OF_SERVICE_URL }>
|
|
||||||
Terms of Service
|
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
|
Loading…
Reference in New Issue