fix(web): remove unused checkForUpdates JSON object (#1638)

This commit is contained in:
martylukyy 2024-09-01 18:23:41 +02:00 committed by GitHub
parent f3c7946e52
commit 472d327308
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,6 @@ import { newRidgeState } from "react-ridge-state";
interface SettingsType { interface SettingsType {
debug: boolean; debug: boolean;
checkForUpdates: boolean;
darkTheme: boolean; darkTheme: boolean;
scrollOnNewLog: boolean; scrollOnNewLog: boolean;
indentLogLines: boolean; indentLogLines: boolean;
@ -34,7 +33,6 @@ const AuthContextDefaults: AuthInfo = {
const SettingsContextDefaults: SettingsType = { const SettingsContextDefaults: SettingsType = {
debug: false, debug: false,
checkForUpdates: true,
darkTheme: window.matchMedia('(prefers-color-scheme: dark)').matches, darkTheme: window.matchMedia('(prefers-color-scheme: dark)').matches,
scrollOnNewLog: false, scrollOnNewLog: false,
indentLogLines: false, indentLogLines: false,