diff --git a/src/components/views/right_panel/VerificationPanel.js b/src/components/views/right_panel/VerificationPanel.js index a8d4ce733b..7474f0ef48 100644 --- a/src/components/views/right_panel/VerificationPanel.js +++ b/src/components/views/right_panel/VerificationPanel.js @@ -258,7 +258,11 @@ export default class VerificationPanel extends React.PureComponent { }; componentDidMount() { - this.props.request.on("change", this._onRequestChange); + const {request} = this.props; + request.on("change", this._onRequestChange); + if (request.verifier) { + this.setState({sasEvent: request.verifier.sasEvent}); + } this._onRequestChange(); }