Fix a bug that nft owner check prevents the unregistered user

This commit is contained in:
Thunnini 2022-12-18 23:35:49 +09:00
parent d50f491b1b
commit 061f2a2bed

View File

@ -407,7 +407,7 @@ export default function VerificationPage() {
};
const isRegisterButtonDisable = (() => {
if (!isOwner) {
if (!isOwner && nftOwnerAddress) {
return true;
}