fix(thread-search): Correct typo

This commit is contained in:
Juan Tejada 2016-04-05 13:27:07 -07:00
parent 792c0e61f1
commit 79e15e8408

View file

@ -17,7 +17,7 @@ const MESSAGE_BODY_LENGTH = 50000
class SearchIndexStore {
constuctor() {
constructor() {
this.accountIds = _.pluck(AccountStore.accounts(), 'id')
this.unsubscribers = []
}
@ -174,4 +174,4 @@ class SearchIndexStore {
}
}
export default new SearchIndexStore();
export default new SearchIndexStore()