Commit d1c78298 authored by picklesrus's avatar picklesrus

Use indexOf instead of includes because of old browsers.

parent a111be6d
...@@ -39,7 +39,7 @@ class UsernameStep extends React.Component { ...@@ -39,7 +39,7 @@ class UsernameStep extends React.Component {
componentDidMount () { componentDidMount () {
// Send info to analytics when we aren't on the standalone page. // Send info to analytics when we aren't on the standalone page.
// If we are on the standalone join page, the page load will take care of this. // If we are on the standalone join page, the page load will take care of this.
if (!window.location.pathname.includes('/join')) { if (window.location.pathname.indexOf('/join') === -1) {
if (this.props.sendAnalytics) { if (this.props.sendAnalytics) {
this.props.sendAnalytics('join-username-modal'); this.props.sendAnalytics('join-username-modal');
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment