lint semis

This commit is contained in:
Jorik Schellekens 2020-07-01 16:07:27 +01:00
parent 2162517a37
commit d203943b7f

View file

@ -53,8 +53,7 @@ export class BreadcrumbsStore extends AsyncStoreWithClient<IState> {
public get visible(): boolean { public get visible(): boolean {
// @ts-ignore - TypeScript really wants this to be [tagId: string] but we know better. // @ts-ignore - TypeScript really wants this to be [tagId: string] but we know better.
const roomCount = _reduce(RoomListStoreTempProxy.getRoomLists(), (result, rooms) => result + rooms.length, 0) const roomCount = _reduce(RoomListStoreTempProxy.getRoomLists(), (result, rooms) => result + rooms.length, 0);
console.log(`calculating roomlist size: ${roomCount}`)
return roomCount >= 20; return roomCount >= 20;
} }