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 {
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,