diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-07 20:15:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-07 20:15:18 -0400 |
commit | 1c3f2c5712ca0c865f5933b3e6b1aff7604e9f35 (patch) | |
tree | d912c10dc5efe7ce2fa99423b7c707a44adb39de /src/components/onboarding/TermsConditions.tsx | |
parent | eb1a01196ae6a999ac73e146cf5286fddc0454e3 (diff) | |
parent | 525678fde244e8e9d3ea373ee8fb93c26ea92be8 (diff) |
Merge pull request #405 from grusuTagg/tma823-onboarding-revamp
[TMA-823] Onboarding Revamp
Diffstat (limited to 'src/components/onboarding/TermsConditions.tsx')
-rw-r--r-- | src/components/onboarding/TermsConditions.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/onboarding/TermsConditions.tsx b/src/components/onboarding/TermsConditions.tsx index 08cd8228..9bd0ee3b 100644 --- a/src/components/onboarding/TermsConditions.tsx +++ b/src/components/onboarding/TermsConditions.tsx @@ -49,11 +49,11 @@ const TermsConditions: React.FC<TermsConditionsProps> = (props) => { <View style={styles.body}> <RadioCheckbox checked={accepted} onPress={toggleAccepted} /> <View style={styles.bodyPrompt}> - <Text style={styles.bodyPromptText}>I accept the </Text> + <Text style={styles.bodyPromptText}>Accept </Text> <TouchableOpacity onPress={() => setModalVisible(true)}> <Text style={[styles.bodyPromptText, styles.bodyPromptTextUnderline]}> - EULA & Terms of Service + Terms and Conditions </Text> </TouchableOpacity> </View> |