From 472d3273087977a0a514ee3b54cd08380b71670e Mon Sep 17 00:00:00 2001 From: martylukyy <35452459+martylukyy@users.noreply.github.com> Date: Sun, 1 Sep 2024 18:23:41 +0200 Subject: [PATCH] fix(web): remove unused `checkForUpdates` JSON object (#1638) --- web/src/utils/Context.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/src/utils/Context.ts b/web/src/utils/Context.ts index 63ec849..c50a219 100644 --- a/web/src/utils/Context.ts +++ b/web/src/utils/Context.ts @@ -8,7 +8,6 @@ import { newRidgeState } from "react-ridge-state"; interface SettingsType { debug: boolean; - checkForUpdates: boolean; darkTheme: boolean; scrollOnNewLog: boolean; indentLogLines: boolean; @@ -34,7 +33,6 @@ const AuthContextDefaults: AuthInfo = { const SettingsContextDefaults: SettingsType = { debug: false, - checkForUpdates: true, darkTheme: window.matchMedia('(prefers-color-scheme: dark)').matches, scrollOnNewLog: false, indentLogLines: false,