summaryrefslogtreecommitdiffstats
path: root/src/stores/PaymentStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/PaymentStore.js')
-rw-r--r--src/stores/PaymentStore.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/stores/PaymentStore.js b/src/stores/PaymentStore.js
index eb42ae10e..69e6eb9c3 100644
--- a/src/stores/PaymentStore.js
+++ b/src/stores/PaymentStore.js
@@ -4,7 +4,6 @@ import { remote } from 'electron';
4import Store from './lib/Store'; 4import Store from './lib/Store';
5import CachedRequest from './lib/CachedRequest'; 5import CachedRequest from './lib/CachedRequest';
6import Request from './lib/Request'; 6import Request from './lib/Request';
7import { gaEvent } from '../lib/analytics';
8 7
9const { BrowserWindow } = remote; 8const { BrowserWindow } = remote;
10 9
@@ -30,8 +29,6 @@ export default class PaymentStore extends Store {
30 @action _createHostedPage({ planId }) { 29 @action _createHostedPage({ planId }) {
31 const request = this.createHostedPageRequest.execute(planId); 30 const request = this.createHostedPageRequest.execute(planId);
32 31
33 gaEvent('Payment', 'createHostedPage', planId);
34
35 return request; 32 return request;
36 } 33 }
37 34