Fix LoginPage

This commit is contained in:
Tobias Fella
2020-11-11 14:09:35 +01:00
parent 99f2127c3f
commit 2e711691ae
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ import QtQuick 2.12
import QtQuick.Controls 2.12 as QQC2
import QtQuick.Layouts 1.12
import NeoChat 0.1
import org.kde.neochat 0.1
import NeoChat.Component 2.0

View File

@@ -77,7 +77,7 @@ Kirigami.ApplicationWindow {
onInitiated: {
if (Controller.accountCount === 0) {
pageStack.replace("qrc:/qml/LoginPage.qml", {});
pageStack.replace("qrc:/imports/NeoChat/Page/LoginPage.qml", {});
} else {
pageStack.replace(roomListComponent);
}