Lesson 14 tokenUris not showing #2933
Answered
by
alymurtazamemon
SidharthK2
asked this question in
Q&A
-
repo link : https://github.com/SidharthK2/hh-nft |
Beta Was this translation helpful? Give feedback.
Answered by
alymurtazamemon
Sep 29, 2022
Replies: 1 comment 1 reply
-
@SidharthK2 From the storeImages function you are returning this object const { reponses: imageUploadResponses, files } = await storeImages(
imagesLocation
); Here it should be And also you are calling storeImages function twice, you can comment out the second one now after this; log("----------------------");
await storeImages(imagesLocation); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SidharthK2
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@SidharthK2 From the storeImages function you are returning this object
return { responses, files };
, here spelling isresponses
, but in the handleTokenURI function while deconstructing the object, you are using the different spelling forresponses
;Here it should be
responses
same spelling that you returned from the storeImages function.And also you are calling storeImages function twice, you can comment out the second one now after this;