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
Analytics.trackEvent("Log in successful."); should run without errors
Analytics.trackEvent("Log in successful.");
Error: undefined is not an object (evaluating 'Object.keys(props)') in Analytics.js:26:16
undefined is not an object (evaluating 'Object.keys(props)')
Add default props to equal null and add early break in Analytics.js:20:
function sanitizeProperties(props = null) { if(props === null) { return {}; } ....
The text was updated successfully, but these errors were encountered:
@raymondchooi thanks for reporting.👍 We will fix this in our next release.
Sorry, something went wrong.
No branches or pull requests
Expected behaviour
Analytics.trackEvent("Log in successful.");
should run without errorsActual behaviour
Error:
undefined is not an object (evaluating 'Object.keys(props)')
in Analytics.js:26:16
Steps to reproduce
Analytics.trackEvent("Log in successful.");
Possible solution
Add default props to equal null and add early break in Analytics.js:20:
The text was updated successfully, but these errors were encountered: