1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Update src/Registration.js

Co-Authored-By: Will Hunt <will@half-shot.uk>
This commit is contained in:
Stuart Mumford
2020-02-05 15:36:00 +00:00
parent 5edb0ec912
commit de05965fc0

View File

@@ -40,7 +40,7 @@ export const SAFE_LOCALPART_REGEX = /^[a-z0-9=_\-./]+$/;
* @param {bool} options.go_welcome_on_cancel
* If true, goes to the welcome page if the user cancels the action
* @param {bool} options.screen_after
* If present the screen to redict to after a successful login or register.
* If present the screen to redirect to after a successful login or register.
*/
export async function startAnyRegistrationFlow(options) {
if (options === undefined) options = {};
@@ -75,8 +75,9 @@ export async function startAnyRegistrationFlow(options) {
extraButtons: [
<button className="mx_Dialog_primary" key="start_login"
onClick={() => {
modal.close(); dis.dispatch({action: 'start_login',
screenAfterLogin: options.screen_after});
modal.close();
dis.dispatch({action: 'start_login',
screenAfterLogin: options.screen_after});
}
}>
{ _t('Login') }