mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-16 22:09:26 +08:00
Hotfix on incorrect condition on login button
This commit is contained in:
parent
a11c9dff65
commit
e501bc2c91
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue