Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Iterate
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
  • Loading branch information
t3chguy committed Aug 1, 2024
1 parent 939147c commit 17506f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/components/views/messages/MFileBody.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,6 @@ export default class MFileBody extends React.Component<IProps, IState> {

public state: IState = {};

public state: IState = {};

public static defaultProps = {
showGenericPlaceholder: true,
};
Expand Down
4 changes: 2 additions & 2 deletions src/models/Call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ interface CallEventHandlerMap {
* A group call accessed through a widget.
*/
export abstract class Call extends TypedEventEmitter<CallEvent, CallEventHandlerMap> {
protected readonly widgetUid;
protected readonly room;
protected readonly widgetUid: string;
protected readonly room: Room;

/**
* The time after which device member state should be considered expired.
Expand Down
2 changes: 1 addition & 1 deletion test/test-utils/call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class MockedCall extends Call {
CallStore.instance.updateRoom(room);
}

public readonly groupCall;
public readonly groupCall: GroupCall;

public get participants(): Map<RoomMember, Set<string>> {
return super.participants;
Expand Down

0 comments on commit 17506f7

Please sign in to comment.