fix: profiles matadata and verify page offline flow #202

Merged
enes merged 7 commits from offline-flow-9-13 into staging 2024-09-16 12:18:18 +00:00
2 changed files with 11 additions and 3 deletions
Showing only changes of commit 8267eb624b - Show all commits

View File

@ -72,7 +72,11 @@ export const UsersDetails = ({ meta }: UsersDetailsProps) => {
{signers.map((signer) => { {signers.map((signer) => {
const pubkey = npubToHex(signer)! const pubkey = npubToHex(signer)!
return ( return (
<DisplaySigner status={signersStatus[signer]} pubkey={pubkey} /> <DisplaySigner
key={pubkey}
status={signersStatus[signer]}
pubkey={pubkey}
/>
) )
})} })}
</UserAvatarGroup> </UserAvatarGroup>
@ -87,7 +91,11 @@ export const UsersDetails = ({ meta }: UsersDetailsProps) => {
const pubkey = npubToHex(signer)! const pubkey = npubToHex(signer)!
return ( return (
<DisplaySigner status={SignStatus.Viewer} pubkey={pubkey} /> <DisplaySigner
key={pubkey}
status={SignStatus.Viewer}
pubkey={pubkey}
/>
) )
})} })}
</UserAvatarGroup> </UserAvatarGroup>

View File

@ -1179,7 +1179,7 @@ const Counterpart = ({
return ( return (
<> <>
<div className={styles.avatar}> <div className={styles.avatar}>
<UserAvatar pubkey={user.pubkey} /> <UserAvatar pubkey={user.pubkey} isNameVisible={true} />
</div> </div>
<Tooltip title="Toggle User Role" arrow disableInteractive> <Tooltip title="Toggle User Role" arrow disableInteractive>
<Button <Button