diff --git a/src/components/views/right_panel/VerificationPanel.js b/src/components/views/right_panel/VerificationPanel.js
index 3527747a66..f925508be6 100644
--- a/src/components/views/right_panel/VerificationPanel.js
+++ b/src/components/views/right_panel/VerificationPanel.js
@@ -62,8 +62,9 @@ export default class VerificationPanel extends React.PureComponent {
if (pending) {
button = ;
} else {
+ const disabled = this.state.emojiButtonClicked;
button = (
-
+
{_t("Verify by emoji")}
);
@@ -196,6 +197,7 @@ export default class VerificationPanel extends React.PureComponent {
}
_startSAS = async () => {
+ this.setState({emojiButtonClicked: true});
const verifier = this.props.request.beginKeyVerification(verificationMethods.SAS);
try {
await verifier.verify();