rename variable to themeUseSystem from darkModeUseSystem.

This commit is contained in:
Jason Kulatunga
2022-06-04 08:18:40 -07:00
parent 1c4dd33381
commit f4f5d16b4a
4 changed files with 11 additions and 11 deletions
@@ -18,7 +18,7 @@ export interface AppConfig
temperatureUnit: string;
darkModeUseSystem: boolean;
themeUseSystem: boolean;
}
/**
@@ -38,6 +38,6 @@ export const appConfig: AppConfig = {
temperatureUnit: "celsius",
darkModeUseSystem: true,
themeUseSystem: true,
};