This commit is contained in:
2025-11-04 14:45:52 +01:00
parent 02a2333a41
commit d436318bdb
3 changed files with 9 additions and 10 deletions
+4 -2
View File
@@ -148,7 +148,9 @@ const Register = () => {
!selectedCountry && styles.countryButtonPlaceholder,
]}
>
{selectedCountry ? selectedCountry.name : "Choisis ton pays"}
{selectedCountry
? selectedCountry.name
: "Sélectionne ton pays"}
</Text>
</Pressable>
</BlurView>
@@ -262,7 +264,7 @@ const Register = () => {
<View style={styles.modalOverlay}>
<View style={styles.modalContainer}>
<View style={styles.modalHeader}>
<Text style={styles.modalTitle}>Choisis ton pays</Text>
<Text style={styles.modalTitle}>Sélectionne ton pays</Text>
<Pressable onPress={handleCloseModal}>
<Text style={styles.closeText}>Fermer</Text>
</Pressable>