This was working last night. did I set something wrong?
It was late before I saved an went to sleep.
90:     let Items = await Moralis.Web3API.token.getAllTokenIds(options);
async function initializeApp(){
    let currentUser = Moralis.User.current();
    //console.log(currentUser.attributes.ethAddress);
    if(!currentUser){
        currentUser = await Moralis.Web3.authenticate();
    }
    addLogout();
    //web3 = await Moralis.Web3.enable();
    const options = { address: CONTRACT_ADDRESS, chain: "mumbai" };
    let Items = await Moralis.Web3API.token.getAllTokenIds(options);
    let WithMetadata = await fetchItemMetadata(Items.result, currentUser);
...
 
      
    