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
All event properties sent with an event should appear in the web interface.
If the key for the event property is exactly "type", that event property is silently ignore.
// Correctly tracks foo=bar amplitude.track(eventType: "EventA", eventProperties: ["foo": "bar"]) // EventB is tracked, but with no event properties amplitude.track(eventType: "EventB", eventProperties: ["type": "something"]) // EventC is tracked with only foo=bar event property amplitude.track(eventType: "EventC", eventProperties: ["type": "something", "foo": "bar"])
In case it's helpful, we also have a web client (using amplitude-ts/2.6.1) and it does not have the same issue.
The text was updated successfully, but these errors were encountered:
Hi @jonmindtrip I'm able to send events with a type property in one of my sample projects-
type
Is it possible that you need to enable / unblock the property using our data feature (https://amplitude.com/docs/data/remove-invalid-data)?
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
All event properties sent with an event should appear in the web interface.
Current Behavior
If the key for the event property is exactly "type", that event property is silently ignore.
Steps to Reproduce
In case it's helpful, we also have a web client (using amplitude-ts/2.6.1) and it does not have the same issue.
Environment
The text was updated successfully, but these errors were encountered: