diff options
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 5af1b972..c653e63f 100644 --- a/src/components/onboarding/TermsConditions.tsx +++ b/src/components/onboarding/TermsConditions.tsx @@ -11,7 +11,7 @@ import { } from 'react-native'; import {RadioCheckbox, CenteredView, OverlayView} from '../common'; -import {dummyTermsConditions} from '../../constants'; +import TermsAndConditionsText from './TermsAndConditionsText'; interface TermsConditionsProps extends ViewProps { accepted: boolean; @@ -66,7 +66,7 @@ const TermsConditions: React.FC<TermsConditionsProps> = (props) => { style={styles.modalScrollView} contentContainerStyle={styles.modalScrollViewContent}> <Text style={styles.tcHeader}>Terms and Conditions</Text> - <Text>{dummyTermsConditions}</Text> + <TermsAndConditionsText /> </ScrollView> <View style={styles.modalActions}> <Button title="Accept" onPress={handleAccept} /> |