Remove unused prop

This commit is contained in:
David Baker 2021-07-01 14:03:01 +01:00
parent 642405dbd0
commit 16fb24fa09
2 changed files with 0 additions and 2 deletions

View file

@ -135,7 +135,6 @@ export default class SetupEncryptionBody extends React.Component<IProps, IState>
if (this.state.verificationRequest) {
return <EncryptionPanel
layout="dialog"
inDialog={true}
verificationRequest={this.state.verificationRequest}
onClose={this.onEncryptionPanelClose}
member={MatrixClientPeg.get().getUser(this.state.verificationRequest.otherUserId)}

View file

@ -41,7 +41,6 @@ interface IProps {
verificationRequest: VerificationRequest;
verificationRequestPromise?: Promise<VerificationRequest>;
layout: string;
inDialog: boolean;
isRoomEncrypted: boolean;
}