From f851eac1714c48780b5579d20a83e89c5168d3f7 Mon Sep 17 00:00:00 2001 From: suu <46421931+0suu@users.noreply.github.com> Date: Sun, 23 Nov 2025 09:08:34 +0900 Subject: [PATCH] Change PollingInterval --- src/main/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/main.ts b/src/main/main.ts index bfebe6f..d6b0ba8 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -16,7 +16,7 @@ interface AppSettings { const schema = { apiToken: { type: "string" }, apiSecret: { type: "string" }, // For storing the secret, consider encryption - pollingIntervalSeconds: { type: "number", default: 10 }, + pollingIntervalSeconds: { type: "number", default: 60 }, theme: { type: "string", default: "dark" }, logRetentionDays: { type: "number", default: 7 }, };