feat(sync-ui): default auto-sync interval 60 minutes

This commit is contained in:
2026-07-11 19:49:48 -07:00
parent cff164183a
commit 93d4bbe9a5
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ function withTempDir(fn: (dir: string) => void): void {
test('createDefaultSyncHostsState returns empty v1 state', () => {
assert.deepEqual(createDefaultSyncHostsState(), {
version: 1,
autoSyncIntervalMinutes: 30,
autoSyncIntervalMinutes: 60,
hosts: [],
});
});
+1 -1
View File
@@ -34,7 +34,7 @@ export interface SyncResultUpdate {
detail: string | null;
}
const DEFAULT_AUTO_SYNC_INTERVAL_MINUTES = 30;
const DEFAULT_AUTO_SYNC_INTERVAL_MINUTES = 60;
export function createDefaultSyncHostsState(): SyncHostsState {
return {