We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems like the library is not supporting nested objects as properties. Crash happens.
So for example:
// Works well const gameLevel = { cardCount: 6, name: "Easy" } const gameDetails = { "Game Level": gameLevel }; mixpanel.track(event, { ...gameDetails });
// Crashes because of grid object! const gameLevel = { cardCount: 6, grid: { columns: 3, rows: 2 }, name: "Easy" } const gameDetails = { "Game Level": gameLevel }; mixpanel.track(event, { ...gameDetails });
The text was updated successfully, but these errors were encountered:
hi @erisvaldojunior , we will have a look.
Sorry, something went wrong.
Hi @erisvaldojunior , this issue has been fixed in 1.3.5. I'm closing this issue now, please feel free to reopen if the problem still exits.
No branches or pull requests
Seems like the library is not supporting nested objects as properties. Crash happens.
So for example:
The text was updated successfully, but these errors were encountered: