Add verified badge and page on the front

This commit is contained in:
2023-09-13 17:25:01 +02:00
parent 3b2ca9963b
commit 5c83235cba
7 changed files with 100 additions and 17 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ const ProfileSettings = ({ navigation }: { navigation: any }) => {
type: 'text',
title: translate('email'),
data: {
text: user.email || translate('NoAssociatedEmail'),
text: `${user.email} ${user.emailVerified ? "verified" : "not verified"}` || translate('NoAssociatedEmail'),
onPress: () => {
navigation.navigate('changeEmail');
},