Skip to content

Commit 0182bd5

Browse files
committed
Remove unneeded changes
1 parent d46fd35 commit 0182bd5

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

packages/host/app/components/matrix/room.gts

+1-4
Original file line numberDiff line numberDiff line change
@@ -466,10 +466,7 @@ export default class Room extends Component<Signature> {
466466
)}`;
467467
}
468468

469-
private sendReadReceipt(message?: Message) {
470-
if (!message) {
471-
return;
472-
}
469+
private sendReadReceipt(message: Message) {
473470
if (this.matrixService.profile.userId === message.author.userId) {
474471
return;
475472
}

packages/host/app/lib/matrix-classes/room.ts

-4
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,6 @@ export default class Room {
7171
);
7272
}
7373

74-
get members() {
75-
return this._roomState?.members;
76-
}
77-
7874
get activeLLM() {
7975
let event = this._roomState?.events
8076
.get(APP_BOXEL_ACTIVE_LLM)

0 commit comments

Comments
 (0)