diff --git a/src/components/views/right_panel/VerificationPanel.js b/src/components/views/right_panel/VerificationPanel.js index 5dd01c9f79..38ee31c8b7 100644 --- a/src/components/views/right_panel/VerificationPanel.js +++ b/src/components/views/right_panel/VerificationPanel.js @@ -72,8 +72,8 @@ export default class VerificationPanel extends React.PureComponent { renderQRPhase(pending) { const {member, request} = this.props; - const showSAS = request.methods.includes(verificationMethods.SAS); - const showQR = this.props.request.otherPartySupportsMethod(SCAN_QR_CODE_METHOD); + const showSAS = request.otherPartySupportsMethod(verificationMethods.SAS); + const showQR = request.otherPartySupportsMethod(SCAN_QR_CODE_METHOD); const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); const noCommonMethodError = !showSAS && !showQR ?