You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-07 10:46:24 +03:00
Indicate which access flow was used
This commit is contained in:
@@ -65,11 +65,11 @@ export default class AccessSecretStorageDialog extends React.PureComponent {
|
||||
}
|
||||
|
||||
_onPassPhraseNext = async () => {
|
||||
this.props.onFinished(this.state.passPhrase);
|
||||
this.props.onFinished({ passphrase: this.state.passPhrase });
|
||||
}
|
||||
|
||||
_onRecoveryKeyNext = async () => {
|
||||
this.props.onFinished(this.state.recoveryKey);
|
||||
this.props.onFinished({ recoveryKey: this.state.recoveryKey });
|
||||
}
|
||||
|
||||
_onPassPhraseChange = (e) => {
|
||||
|
||||
Reference in New Issue
Block a user