From e039bdb488b2086deb5ca1ab9188d2608f653116 Mon Sep 17 00:00:00 2001 From: Michael Pfister Date: Mon, 9 Jan 2017 15:46:37 -0800 Subject: [PATCH] Fix localhost urlroot for billing --- src/flux/stores/identity-store.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flux/stores/identity-store.es6 b/src/flux/stores/identity-store.es6 index 14d7f8fee..dd8c3a83a 100644 --- a/src/flux/stores/identity-store.es6 +++ b/src/flux/stores/identity-store.es6 @@ -51,7 +51,7 @@ class IdentityStore extends NylasStore { _onEnvChanged = () => { const env = NylasEnv.config.get('env') if (['development', 'local'].includes(env)) { - this.URLRoot = "http://localhost:5009"; + this.URLRoot = "http://billing.lvh.me:5555"; } else if (env === 'experimental') { this.URLRoot = "https://billing-experimental.nylas.com"; } else if (env === 'staging') {