feat: enhance server stats widgets and fix TypeScript/ESLint errors #394

Merged
ZacharyZcR merged 50 commits from feature-server-stats-customization into dev-1.8.0 2025-10-10 03:48:34 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 8f65fe8d1d - Show all commits
+1 -1
View File
@@ -11,7 +11,7 @@ import { sshCredentials } from "../database/db/schema.js";
import { eq, and } from "drizzle-orm"; import { eq, and } from "drizzle-orm";
import { sshLogger } from "../utils/logger.js"; import { sshLogger } from "../utils/logger.js";
import { SimpleDBOps } from "../utils/simple-db-ops.js"; import { SimpleDBOps } from "../utils/simple-db-ops.js";
import { AuthManager, type JWTPayload } from "../utils/auth-manager.js"; import { AuthManager } from "../utils/auth-manager.js";
import { UserCrypto } from "../utils/user-crypto.js"; import { UserCrypto } from "../utils/user-crypto.js";
interface ConnectToHostData { interface ConnectToHostData {
+1 -1
View File
@@ -128,7 +128,7 @@ import { systemLogger, versionLogger } from "./utils/logger.js";
process.exit(1); process.exit(1);
}); });
process.on("unhandledRejection", (reason, _promise) => { process.on("unhandledRejection", (reason) => {
systemLogger.error("Unhandled promise rejection", reason, { systemLogger.error("Unhandled promise rejection", reason, {
operation: "error_handling", operation: "error_handling",
}); });