Hi. I’m having an issue with the amplitude events showing different group_properties than originally set using groupIdentify. groupIdentify gets called once in the app to set the group properties for the events which should set it for future events. I noticed in the User Look-Up page in Amplitude Analytics, some of my events show the group_properties incorrectly while in the same amplitude session. Generic examples are below:
for one user:
ampli.groupIdentify("animalShelterName", "Operation Kindness", {<br /> animal: "Dog",<br /> id: 5,<br /> breed: "Poodle",<br /> animalShelterName: "Operation Kindness",<br /> })
The group_properties that show up in events in User Look-Up page in Amplitude Analytics on the same session, same user:
"group_properties": {<br /> "animalShelterName": {<br /> "Operation Kindness": {<br /> "animal": "Dog",<br /> "id": 5,<br /> "breed": "Golden Retriever",<br /> "animalShelterName": "Operation Kindness"<br /> }<br /> }<br /> },<br />
"group_properties": {<br /> "animalShelterName": {<br /> "Operation Kindness": {<br /> "animal": "Cat",<br /> "id": 13,<br /> "breed": 13,<br /> "animalShelterName": "Operation Kindness"<br /> }<br /> }<br /> },
"group_properties": {<br /> "animalShelterName": {<br /> "Operation Kindness": {<br /> "animal": "Dog",<br /> "id": 5,<br /> "breed": "Poodle",<br /> "animalShelterName": "Operation Kindness"<br /> }<br /> }<br /> },