fix: manage pending relay connection requests #159

Merged
eugene merged 6 commits from reduce-relay-connection-attempts into staging 2024-08-21 08:06:39 +00:00
Showing only changes of commit 42d74c656a - Show all commits

View File

@ -420,12 +420,10 @@ export const DrawPDFFields = (props: Props) => {
{users
.filter((u) => u.role === UserRole.signer)
.map((user, index) => {
let displayValue = truncate(
hexToNpub(user.pubkey),
{
const npub = hexToNpub(user.pubkey)
let displayValue = truncate(npub, {
length: 16
}
)
})
const metadata = props.metadata[user.pubkey]
@ -433,7 +431,8 @@ export const DrawPDFFields = (props: Props) => {
displayValue = truncate(
metadata.name ||
metadata.display_name ||
metadata.username,
metadata.username ||
npub,
{
length: 16
}