Don't export as we don't need to

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-03-26 07:55:52 +01:00
parent 2dcb60b489
commit e39f7caf59
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 2 additions and 2 deletions

View File

@ -41,10 +41,10 @@ type SpaceKey = string | symbol;
interface IState {} interface IState {}
const ACTIVE_SPACE_LS_KEY = "mx_active_space"; const ACTIVE_SPACE_LS_KEY = "mx_active_space";
export const LAST_VIEWED_ROOMS = "mx_last_viewed_rooms"; const LAST_VIEWED_ROOMS = "mx_last_viewed_rooms";
// We can't use HOME_SPACE here because JSON.stringify() will ignore any Symbols // We can't use HOME_SPACE here because JSON.stringify() will ignore any Symbols
export const LAST_VIEWED_ROOMS_HOME = "home_space"; const LAST_VIEWED_ROOMS_HOME = "home_space";
export const HOME_SPACE = Symbol("home-space"); export const HOME_SPACE = Symbol("home-space");
export const SUGGESTED_ROOMS = Symbol("suggested-rooms"); export const SUGGESTED_ROOMS = Symbol("suggested-rooms");