Added mail in the ProfileView

This commit is contained in:
Clément Le Bihan
2024-01-14 19:10:57 +01:00
parent 50522bbe63
commit 52d40b43f0

View File

@@ -80,10 +80,15 @@ const ProfileView = () => {
/> />
</View> </View>
<Translate <Translate
style={{ paddingBottom: 10, fontWeight: 'bold' }} style={{ fontWeight: 'bold' }}
translationKey="accountCreatedOn" translationKey="accountCreatedOn"
format={(e) => `${e} ${userQuery.data.data.createdAt.toLocaleDateString()}`} format={(e) => `${e} ${userQuery.data.data.createdAt.toLocaleDateString()}`}
/> />
<Translate
style={{ fontWeight: 'bold', paddingBottom: 10 }}
translationKey="email"
format={(e) => `${e} ${userQuery.data.email}`}
/>
<Flex <Flex
style={{ style={{
flexDirection: 'row', flexDirection: 'row',