diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-10-06 22:06:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-07 01:06:06 -0400 |
commit | e86478f52e191c52fea20980278174af46f50953 (patch) | |
tree | 195cacdf4326d199294034c0712b626bf7ebcfda /src/screens/onboarding/Checkpoint.tsx | |
parent | 8aafec40501b2236f127cf9175e8a21eb31ee9b0 (diff) |
TMA 207 : Updated the Onboarding Process (#42)
Diffstat (limited to 'src/screens/onboarding/Checkpoint.tsx')
-rw-r--r-- | src/screens/onboarding/Checkpoint.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screens/onboarding/Checkpoint.tsx b/src/screens/onboarding/Checkpoint.tsx index 4a58548e..83f330f1 100644 --- a/src/screens/onboarding/Checkpoint.tsx +++ b/src/screens/onboarding/Checkpoint.tsx @@ -24,7 +24,7 @@ interface CheckpointProps { navigation: CheckpointNavigationProp; } /** - * Registration screen 2 for email, username, password, and terms and conditions + * Checkpoint to ask user if profile setup should be done * @param navigation react-navigation navigation object */ const Checkpoint: React.FC<CheckpointProps> = ({route, navigation}) => { @@ -50,10 +50,10 @@ const Checkpoint: React.FC<CheckpointProps> = ({route, navigation}) => { return ( <Background style={styles.container}> <StatusBar barStyle="light-content" /> - <RegistrationWizard style={styles.wizard} step="four" /> + <RegistrationWizard style={styles.wizard} step="five" /> <View style={styles.textContainer}> - <Text style={styles.header}>Email verified!</Text> + <Text style={styles.header}>You are registered!</Text> <Text style={styles.subtext}> We're almost there. Would you like to setup your profile now? </Text> |