aboutsummaryrefslogtreecommitdiffstats
path: root/frontend-vanilla/src/main.ts
diff options
context:
space:
mode:
authorClaude <noreply@anthropic.com>2026-02-18 22:56:56 +0000
committerClaude <noreply@anthropic.com>2026-02-18 22:56:56 +0000
commit0876a683cdc344b200dbd65aa137969a1528c85d (patch)
tree6a8eb1314cc203f4e070c98422a9cb75699766f1 /frontend-vanilla/src/main.ts
parentb78090371ddc394bf766ba0382568d0c3c6cfd89 (diff)
downloadneko-claude/investigate-theme-performance-GjjYA.tar.gz
neko-claude/investigate-theme-performance-GjjYA.tar.bz2
neko-claude/investigate-theme-performance-GjjYA.zip
Revert polling interval back to 1sclaude/investigate-theme-performance-GjjYA
https://claude.ai/code/session_0187FXrbScDSWfbNEk9SfJaj
Diffstat (limited to 'frontend-vanilla/src/main.ts')
-rw-r--r--frontend-vanilla/src/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend-vanilla/src/main.ts b/frontend-vanilla/src/main.ts
index 75707ac..e3d3a71 100644
--- a/frontend-vanilla/src/main.ts
+++ b/frontend-vanilla/src/main.ts
@@ -397,7 +397,7 @@ if (typeof window !== 'undefined') {
}
}
- }, 3000);
+ }, 1000);
}
// ... (add this variable at module level or inside renderSettings if possible, but module level is safer for persistence across clicks if renderSettings re-runs? No, event flow is synchronous: click button -> click file input. User selects file. Change event fires.