Fix dupe events

This commit is contained in:
Jeffrey Morgan 2015-02-28 23:06:09 -05:00
parent 4795e323e2
commit bf0abc1d2c
2 changed files with 1 additions and 2 deletions

View File

@ -29,7 +29,7 @@ var Setup = React.createClass({
SetupStore.removeListener(SetupStore.ERROR_EVENT, this.update); SetupStore.removeListener(SetupStore.ERROR_EVENT, this.update);
}, },
handleRetry: function () { handleRetry: function () {
metrics.track('Retried Setup'); metrics.track('Setup Retried');
SetupStore.retry(); SetupStore.retry();
}, },
handleOpenWebsite: function () { handleOpenWebsite: function () {

View File

@ -197,7 +197,6 @@ var SetupStore = assign(Object.create(EventEmitter.prototype), {
this.emit(this.STEP_EVENT); this.emit(this.STEP_EVENT);
} }
yield this.wait(); yield this.wait();
metrics.track('Setup Retried');
} }
} }
} }