feat: add additional key profile

This commit is contained in:
caturbgs 2021-12-16 16:01:45 +07:00
parent 17764cc1cb
commit 14407dd5e3

View File

@ -61,6 +61,18 @@ export const Profile = observer(() => {
<Col span={12}>
<Text strong>Name</Text>
</Col>
<Col span={12}>
<Text>{store.authentication.profileData?.userDetail?.name}</Text>
</Col>
<Col span={12}>
<Text strong>Phone Number</Text>
</Col>
<Col span={12}>
<Text>{store.authentication.profileData?.userDetail?.phone_number}</Text>
</Col>
<Col span={12}>
<Text strong>Username</Text>
</Col>
<Col span={12}>
<Text>{store.authentication.profileData?.username}</Text>
</Col>