Skip to content

Commit

Permalink
fix(onboarding): wording écran rappel
Browse files Browse the repository at this point in the history
  • Loading branch information
tangimds committed Dec 23, 2021
1 parent 0005309 commit 22fd572
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/scenes/reminder/reminder.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,7 @@ class Reminder extends React.Component {
onPress={reminder ? this.showTimePicker : this.validateOnboarding}
style={[styles.laterContainer]}>
<Text style={styles.later}>
{reminder
? "Modifier l'heure du rappel"
: 'Plus tard, peut-être'}
{reminder ? "Modifier l'heure du rappel" : 'Plus tard'}
</Text>
</TouchableOpacity>
</>
Expand All @@ -258,7 +256,7 @@ class Reminder extends React.Component {
}
style={[styles.laterContainer]}>
<Text style={styles.later}>
{reminder ? 'Retirer le rappel' : 'Plus tard, peut-être'}
{reminder ? 'Retirer le rappel' : 'Plus tard'}
</Text>
</TouchableOpacity>
</>
Expand Down Expand Up @@ -295,8 +293,6 @@ const styles = StyleSheet.create({
marginVertical: 10,
},
container: {
borderColor: 'red',
borderWidth: 1,
justifyContent: 'flex-start',
alignItems: 'center',
paddingBottom: 100,
Expand Down

0 comments on commit 22fd572

Please sign in to comment.