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:
@@ -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)
|
||||
|
@@ -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`
|
||||
|
@@ -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',
|
||||
})
|
||||
|
Reference in New Issue
Block a user