From 9ab2db32a9d1690659e82df88efa62ecd2955bb1 Mon Sep 17 00:00:00 2001 From: Aditya Garud Date: Wed, 6 May 2026 00:59:53 +0530 Subject: [PATCH] feat(app): default updateAutoDownload to true for new and unconfigured users --- apps/app/src/react-app/shell/settings-route.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app/src/react-app/shell/settings-route.tsx b/apps/app/src/react-app/shell/settings-route.tsx index bf2067e98..b872710ef 100644 --- a/apps/app/src/react-app/shell/settings-route.tsx +++ b/apps/app/src/react-app/shell/settings-route.tsx @@ -364,7 +364,7 @@ export function SettingsRoute() { readStoredBoolean(SETTINGS_UPDATE_AUTO_CHECK_KEY, true), ); const [updateAutoDownload, setUpdateAutoDownload] = useState(() => - readStoredBoolean(SETTINGS_UPDATE_AUTO_DOWNLOAD_KEY, false), + readStoredBoolean(SETTINGS_UPDATE_AUTO_DOWNLOAD_KEY, true), ); const [configActionStatus, setConfigActionStatus] = useState(null); const [revealConfigBusy, setRevealConfigBusy] = useState(false);