We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fc4f21 commit 03d2bd6Copy full SHA for 03d2bd6
src/lib/settings.js
@@ -185,12 +185,10 @@ class Settings {
185
if (this.#initialized) return;
186
this.settingsFile = Url.join(DATA_STORAGE, "settings.json");
187
188
- if (!IS_FREE_VERSION) {
189
- this.#defaultSettings.appTheme = "system";
190
- this.#defaultSettings.editorTheme = getSystemEditorTheme(
191
- isDeviceDarkTheme(),
192
- );
193
- }
+ this.#defaultSettings.appTheme = "system";
+ this.#defaultSettings.editorTheme = getSystemEditorTheme(
+ isDeviceDarkTheme(),
+ );
194
195
this.#initialized = true;
196
0 commit comments