Skip to content

Commit

Permalink
🚑️ Fix explicit nft id not effective in send
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Aug 13, 2024
1 parent 0de65d0 commit 41df31b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pages/nft-book-store/send/[classId].vue
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,11 @@ watch(isLoading, (newIsLoading) => {
if (newIsLoading) { error.value = '' }
})
watch(nftId, () => {
watch(nftId, (newNftId) => {
nftIdError.value = ''
if (nftIds.value[0]) {
nftIds.value[0] = newNftId
}
})
watch(isEditingNFTId, async (isEditing) => {
Expand Down

0 comments on commit 41df31b

Please sign in to comment.