From 8c4255ebeb5118820d51558813d36214a65aebf4 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Tue, 14 Jun 2016 01:23:22 -0700 Subject: [PATCH] fix(login-links): Cap req to 1.5s, ensure pages always open --- src/flux/stores/identity-store.es6 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/flux/stores/identity-store.es6 b/src/flux/stores/identity-store.es6 index 31ae5e3e6..108f1bb03 100644 --- a/src/flux/stores/identity-store.es6 +++ b/src/flux/stores/identity-store.es6 @@ -142,6 +142,7 @@ class IdentityStore extends NylasStore { url: `${this.URLRoot}/n1/login-link`, qs: qs, json: true, + timeout: 1500, body: { next_path: pathWithUtm, account_token: this._identity.token,