From 54081bf77e9ac2b5afe49b800ac01490f3ee2ad3 Mon Sep 17 00:00:00 2001 From: Matt Dawkins Date: Tue, 30 Jun 2026 12:44:34 -0400 Subject: [PATCH] Lower default auto-save delay to 15 seconds Change the default auto-save interval from 60 seconds to 15 seconds so annotation work is persisted more frequently when auto-save is enabled. --- client/dive-common/store/settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/dive-common/store/settings.ts b/client/dive-common/store/settings.ts index 83dbdd47a..ea4dc8173 100644 --- a/client/dive-common/store/settings.ts +++ b/client/dive-common/store/settings.ts @@ -154,7 +154,7 @@ const defaultSettings: AnnotationSettings = { }, autoSaveSettings: { enabled: false, // Disabled by default for backward compatibility - delaySeconds: 60, + delaySeconds: 15, }, stereoSettings: { clearLengthOnCameraFileLoad: true,