Re-wrap forgot pw success in layout (#1966)
parent
c5b6f88e9a
commit
3a21c02b8a
|
@ -136,7 +136,12 @@ export const Login = ({onPressBack}: {onPressBack: () => void}) => {
|
||||||
</LoggedOutLayout>
|
</LoggedOutLayout>
|
||||||
) : undefined}
|
) : undefined}
|
||||||
{currentForm === Forms.PasswordUpdated ? (
|
{currentForm === Forms.PasswordUpdated ? (
|
||||||
|
<LoggedOutLayout
|
||||||
|
leadin=""
|
||||||
|
title={_(msg`Password updated`)}
|
||||||
|
description={_(msg`You can now sign in with your new password.`)}>
|
||||||
<PasswordUpdatedForm onPressNext={gotoForm(Forms.Login)} />
|
<PasswordUpdatedForm onPressNext={gotoForm(Forms.Login)} />
|
||||||
|
</LoggedOutLayout>
|
||||||
) : undefined}
|
) : undefined}
|
||||||
</KeyboardAvoidingView>
|
</KeyboardAvoidingView>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue