remove getter that is now in parent class

This commit is contained in:
Bruno Windels 2023-01-17 09:28:23 +01:00
parent f421cdd4f2
commit cc653884a5

View File

@ -141,10 +141,6 @@ export class RoomViewModel extends ErrorReportViewModel {
get timelineViewModel() { return this._timelineVM; } get timelineViewModel() { return this._timelineVM; }
get isEncrypted() { return this._room.isEncrypted; } get isEncrypted() { return this._room.isEncrypted; }
get errorViewModel() {
return this._errorViewModel;
}
get avatarLetter() { get avatarLetter() {
return avatarInitials(this.name); return avatarInitials(this.name);
} }