mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-17 06:19:25 +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 }} />
|
<View style={{ paddingVertical: 4 }} />
|
||||||
<Button
|
<Button
|
||||||
onPress={async () => {
|
onPress={async () => {
|
||||||
if (logging_in) {
|
if (!logging_in) {
|
||||||
await UserLogin({
|
await UserLogin({
|
||||||
username: creds.username,
|
username: creds.username,
|
||||||
password: creds.password,
|
password: creds.password,
|
||||||
|
|
Loading…
Reference in a new issue