1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-21 04:07:46 +00:00

Fix login page not working

This commit is contained in:
Joshua Goins 2023-12-20 17:09:32 -05:00
parent 01969ef6da
commit 4c2bece302

View file

@ -249,7 +249,7 @@ QQC2.Control {
enabled: page.isLoginValid enabled: page.isLoginValid
onClicked: { onClicked: {
LauncherCore.login(LauncherCore.currentProfile, usernameField.text, passwordField.text, otpField.text) LauncherCore.login(LauncherCore.currentProfile, usernameField.text, passwordField.text, otpField.text)
page.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "StatusPage")) page.Window.window.pageStack.layers.push(Qt.createComponent("zone.xiv.astra", "StatusPage"))
} }
} }