Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

325
Views
When creating a new object with forEach, some prperties show up as $$typeof: Symbol(react.element) React

So I am receiving an array of Objects, each one has a "attributes.seller" property. Then I am using a forEach( ) to go over each one and create a new object with only the properties I need and pushing them to a new array, including the Seller property. The issue is that on ALL the received objects the "Seller" property exists and its a string.

However, after constructing the new object most of the seller properties show as "seller: {$$typeof: Symbol(react.element), type: 'button', key: null, ref: null, props: {…}, …}"

BUT not all of them, some do show correctly. So IDK whatI am doing wrong if my code was working before and it still works but not for all the items.

This is the object array i am receiving

This is where I itirate over each object:

createdResults.forEach((item) => {
      console.log(item.attributes.seller);
      const offer = {
        itemId: Number(item.attributes.itemId),
        token: item.attributes.token,
        amount: item.attributes.amount,
        price: item.attributes.price,
        seller: item.attributes.seller,
      };
      createdArr.push(offer);

Even when I log out to the console items.attributes.itemId, it shows EVERY SINGLE property just fine.

The issue is after I have pushed each new object into the new array that the "seller" property of it shows like this: New Object

 const getEvents = async () => {
    let createdArr = [];
    
    const created = new Moralis.Query("SaleCreateddd");
    

    const createdResults = await created.find();
    
    

    createdResults.map((item) => {
      // Until here, the seller string shows up correctly for each item
      console.log(item.attributes.seller);
      const offer = {
        itemId: Number(item.attributes.itemId),
        token: item.attributes.token,
        amount: item.attributes.amount,
        price: item.attributes.price,
        seller: item.attributes.seller,
      };
      // Its after the forEach loop that the seller property gets distorted

      createdArr.push(offer);
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

itemId is already an integer remove Number()

then you are forgetting .seller

createdResults.forEach((item) => {
      console.log(item.attributes.seller);
      const offer = {
        itemId: item.attributes.seller.Number(itemId),
        token: item.attributes.seller.token,
        amount: item.attributes.seller.amount,
        price: item.attributes.seller.price,
        seller: item.attributes.seller.seller,
      };
      createdArr.push(offer);```
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!