staging to main #107
@ -130,8 +130,10 @@ export const CreatePage = () => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if (userInput.startsWith('npub')) {
|
const input = userInput.toLowerCase()
|
||||||
const pubkey = npubToHex(userInput)
|
|
||||||
|
if (input.startsWith('npub')) {
|
||||||
|
const pubkey = npubToHex(input)
|
||||||
if (pubkey) {
|
if (pubkey) {
|
||||||
addUser(pubkey)
|
addUser(pubkey)
|
||||||
setUserInput('')
|
setUserInput('')
|
||||||
@ -141,12 +143,12 @@ export const CreatePage = () => {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (userInput.includes('@')) {
|
if (input.includes('@')) {
|
||||||
setIsLoading(true)
|
setIsLoading(true)
|
||||||
setLoadingSpinnerDesc('Querying for nip05')
|
setLoadingSpinnerDesc('Querying for nip05')
|
||||||
const nip05Profile = await queryNip05(userInput)
|
const nip05Profile = await queryNip05(input)
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
console.error(`error occurred in querying nip05: ${userInput}`, err)
|
console.error(`error occurred in querying nip05: ${input}`, err)
|
||||||
return null
|
return null
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user