Skip to content

Lesson 14 tokenUris not showing #2933

Answered by alymurtazamemon
SidharthK2 asked this question in Q&A
Discussion options

You must be logged in to vote

@SidharthK2 From the storeImages function you are returning this object return { responses, files };, here spelling is responses, but in the handleTokenURI function while deconstructing the object, you are using the different spelling for responses;

const { reponses: imageUploadResponses, files } = await storeImages(
  imagesLocation
);

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;

log("----------------------");
await storeImages(imagesLocation);

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@SidharthK2
Comment options

Answer selected by SidharthK2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants