From 57b1ef6b41b5371eed75a0c439ea11961c4097ed Mon Sep 17 00:00:00 2001 From: Brett Sun Date: Tue, 9 Feb 2016 09:40:27 +0100 Subject: [PATCH] Hotfix revert on altUser for logging out on whitelabels --- js/stores/user_store.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/stores/user_store.js b/js/stores/user_store.js index fe96eaa8..e4bea2bf 100644 --- a/js/stores/user_store.js +++ b/js/stores/user_store.js @@ -1,6 +1,6 @@ 'use strict'; -import { alt, altWhitelabel, altUser, altThirdParty } from '../alt'; +import { alt, altUser, altThirdParty } from '../alt'; import EventActions from '../actions/event_actions'; @@ -56,8 +56,8 @@ class UserStore { EventActions.userDidLogout(); // Reset all stores back to their initial state + // Don't recycle the whitelabel stores since they're not dependent on login alt.recycle(); - altWhitelabel.recycle(); altUser.recycle(); altThirdParty.recycle();