Fixed a few typos - removed news section from home page - will be utilizing a forum section for update / release notifications in the future.

This commit is contained in:
2025-01-29 20:18:30 -08:00
parent 39418f300f
commit ae8a61e127
4 changed files with 6 additions and 358 deletions

View File

@@ -475,7 +475,7 @@ const loadCards = async (cardIdentifierPrefix) => {
continue
}
} else {
const isAlreadyMinter = await verifyMinter(cardDataResponse.minterName)
const isAlreadyMinter = await verifyMinter(cardDataResponse.creator)
if (isAlreadyMinter) {
console.warn(`card IS ALREADY a minter, NOT displaying following identifier on the MinterBoard: ${card.identifier}`)
removeSkeleton(card.identifier)

View File

@@ -1,4 +1,4 @@
const Q_MINTERSHIP_VERSION = "1.05"
const Q_MINTERSHIP_VERSION = "1.05.2"
const messageIdentifierPrefix = `mintership-forum-message`
const messageAttachmentIdentifierPrefix = `mintership-forum-attachment`

View File

@@ -252,7 +252,7 @@ const fetchOwnerAddressFromName = async (name) => {
console.log('fetchOwnerAddressFromName called')
console.log('name:', name)
try {
const response = await fetch(`${baseUrl}/names/${name}`, {
const response = await fetch(`${baseUrl}/names/${encodeURIComponent(name)}`, {
headers: { 'Accept': 'application/json' },
method: 'GET',
})