update sample names from login username input

This commit is contained in:
Ajay Bura 2025-08-24 20:26:15 +05:30
parent 1c0846d830
commit 647a561607

View file

@ -72,19 +72,19 @@ function UsernameHint({ server }: { server: string }) {
<Text as="span" size="Inherit" priority="300"> <Text as="span" size="Inherit" priority="300">
Username: Username:
</Text>{' '} </Text>{' '}
johndoe user123
</Text> </Text>
<Text size="T300"> <Text size="T300">
<Text as="span" size="Inherit" priority="300"> <Text as="span" size="Inherit" priority="300">
Matrix ID: Matrix ID:
</Text> </Text>
{` @johndoe:${server}`} {` @user123:${server}`}
</Text> </Text>
<Text size="T300"> <Text size="T300">
<Text as="span" size="Inherit" priority="300"> <Text as="span" size="Inherit" priority="300">
Email: Email:
</Text> </Text>
{` johndoe@${server}`} {` user123@${server}`}
</Text> </Text>
</Box> </Box>
</Menu> </Menu>