aboutsummaryrefslogtreecommitdiffstats
path: root/mail-overview/shell.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mail-overview/shell.qml')
-rw-r--r--mail-overview/shell.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/mail-overview/shell.qml b/mail-overview/shell.qml
index 7842bc6..cd2e907 100644
--- a/mail-overview/shell.qml
+++ b/mail-overview/shell.qml
@@ -11,7 +11,6 @@
import Quickshell
import Quickshell.Io
-import QtQuick
ShellRoot {
MailPanel { id: panel }
@@ -22,17 +21,4 @@ ShellRoot {
function show() { panel.show(); }
function close() { panel.close(); }
}
-
- // TEMPORARY probe for Task 3 verification. Removed in Step 5.
- Component.onCompleted: Qt.callLater(() => {
- console.log("ACCOUNTS", JSON.stringify(Accounts.accounts.map(a => a.key + ":" + a.label)));
- })
- Connections {
- target: Accounts
- function onLoadingChanged() {
- if (!Accounts.loading)
- console.log("COUNTS", JSON.stringify(Accounts.accounts.map(a => a.label + "=" + a.count)),
- "total", Accounts.total);
- }
- }
}