fix: manage pending relay connection requests #159
@ -420,12 +420,10 @@ export const DrawPDFFields = (props: Props) => {
|
|||||||
{users
|
{users
|
||||||
.filter((u) => u.role === UserRole.signer)
|
.filter((u) => u.role === UserRole.signer)
|
||||||
.map((user, index) => {
|
.map((user, index) => {
|
||||||
let displayValue = truncate(
|
const npub = hexToNpub(user.pubkey)
|
||||||
hexToNpub(user.pubkey),
|
let displayValue = truncate(npub, {
|
||||||
{
|
length: 16
|
||||||
length: 16
|
})
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
const metadata = props.metadata[user.pubkey]
|
const metadata = props.metadata[user.pubkey]
|
||||||
|
|
||||||
@ -433,7 +431,8 @@ export const DrawPDFFields = (props: Props) => {
|
|||||||
displayValue = truncate(
|
displayValue = truncate(
|
||||||
metadata.name ||
|
metadata.name ||
|
||||||
metadata.display_name ||
|
metadata.display_name ||
|
||||||
metadata.username,
|
metadata.username ||
|
||||||
|
npub,
|
||||||
{
|
{
|
||||||
length: 16
|
length: 16
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user