Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

Re-wrap forgot pw success in layout (#1966)

authored by

Eric Bailey and committed by
GitHub
3a21c02b c5b6f88e

+6 -1
+6 -1
src/view/com/auth/login/Login.tsx
··· 136 136 </LoggedOutLayout> 137 137 ) : undefined} 138 138 {currentForm === Forms.PasswordUpdated ? ( 139 - <PasswordUpdatedForm onPressNext={gotoForm(Forms.Login)} /> 139 + <LoggedOutLayout 140 + leadin="" 141 + title={_(msg`Password updated`)} 142 + description={_(msg`You can now sign in with your new password.`)}> 143 + <PasswordUpdatedForm onPressNext={gotoForm(Forms.Login)} /> 144 + </LoggedOutLayout> 140 145 ) : undefined} 141 146 </KeyboardAvoidingView> 142 147 )