refactor: frontend (#5068)

* refactor: setting components

* refactor: frontend

* fix: settings router
This commit is contained in:
Sline
2025-10-15 18:57:44 +08:00
committed by GitHub
parent a591ee1efc
commit 0b4403b67b
34 changed files with 1072 additions and 861 deletions

View File

@@ -14,8 +14,7 @@ interface ILogItem {
// Start logs monitoring with specified level
export const startLogsStreaming = async (logLevel: LogLevel = "info") => {
try {
const level = logLevel === "all" ? undefined : logLevel;
// await startLogsMonitoring(level);
// await startLogsMonitoring(logLevel === "all" ? undefined : logLevel);
console.log(
`[IPC-LogService] Started logs monitoring with level: ${logLevel}`,
);