Compare commits

...

1 Commits

Author SHA1 Message Date
ammarahm-ed
a2a4e94f50 mobile: fix login ui flicker when keyboard change focus 2023-09-12 17:08:55 +05:00
2 changed files with 2 additions and 1 deletions

View File

@@ -91,6 +91,7 @@ const AuthModal = () => {
width: "100%"
}}
keyboardShouldPersistTaps="handled"
enableAutomaticScroll={false}
>
{currentAuthMode !== AuthMode.login ? (
<Signup

View File

@@ -71,7 +71,7 @@ export const Login = ({ changeMode }) => {
}, 5000);
});
const deviceMode = useSettingStore((state) => state.deviceMode);
const { width, height } = useWindowDimensions();
const { height } = useWindowDimensions();
useEffect(() => {
async () => {
setStep(LoginSteps.emailAuth);