diff options
author | George Rusu <george@tagg.id> | 2021-05-06 20:34:25 -0700 |
---|---|---|
committer | George Rusu <george@tagg.id> | 2021-05-06 20:34:25 -0700 |
commit | 14bc026d21e4ee9692ddbea4343b2c57c6e3cab4 (patch) | |
tree | 09de4026a81a45058f0921f383371bda047e4dea /src/components/onboarding | |
parent | 552ea67bedc3f07bbf0f48906109e780565dcf2d (diff) |
onboarding part 1 and 2 done, need to register and style
Diffstat (limited to 'src/components/onboarding')
-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> |