Re-wrap forgot pw success in layout (#1966)
This commit is contained in:
parent
c5b6f88e9a
commit
3a21c02b8a
1 changed files with 6 additions and 1 deletions
|
@ -136,7 +136,12 @@ export const Login = ({onPressBack}: {onPressBack: () => void}) => {
|
||||||
</LoggedOutLayout>
|
</LoggedOutLayout>
|
||||||
) : undefined}
|
) : undefined}
|
||||||
{currentForm === Forms.PasswordUpdated ? (
|
{currentForm === Forms.PasswordUpdated ? (
|
||||||
<PasswordUpdatedForm onPressNext={gotoForm(Forms.Login)} />
|
<LoggedOutLayout
|
||||||
|
leadin=""
|
||||||
|
title={_(msg`Password updated`)}
|
||||||
|
description={_(msg`You can now sign in with your new password.`)}>
|
||||||
|
<PasswordUpdatedForm onPressNext={gotoForm(Forms.Login)} />
|
||||||
|
</LoggedOutLayout>
|
||||||
) : undefined}
|
) : undefined}
|
||||||
</KeyboardAvoidingView>
|
</KeyboardAvoidingView>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue