Hotfix on incorrect condition on login button

This commit is contained in:
Keannu Bernasol 2023-10-15 12:57:44 +08:00
parent a11c9dff65
commit e501bc2c91

View file

@ -77,7 +77,7 @@ export default function Login() {
<View style={{ paddingVertical: 4 }} />
<Button
onPress={async () => {
if (logging_in) {
if (!logging_in) {
await UserLogin({
username: creds.username,
password: creds.password,