diff --git a/src/stores/CustomRoomTagStore.js b/src/stores/CustomRoomTagStore.js index d898b5d32a..3e109aef2d 100644 --- a/src/stores/CustomRoomTagStore.js +++ b/src/stores/CustomRoomTagStore.js @@ -48,7 +48,7 @@ class CustomRoomTagStore extends EventEmitter { constructor() { super(); // Initialise state - this._state = {tags: this._getUpdatedTags()}; + this._state = {tags: {}}; this._roomListStoreToken = RoomListStore.addListener(() => { this._setState({tags: this._getUpdatedTags()});