Make the build not fail

This commit is contained in:
phntxx 2022-04-10 21:31:40 +02:00
parent 765ab6d643
commit 3131110b4c
9 changed files with 214 additions and 434 deletions

View file

@ -49,7 +49,7 @@ interface IFetchProps {
* Fetches app, bookmark, search, theme and imprint data and returns it.
*/
export const useFetcher = (): IFetchProps => {
let defaults: IDataProps<any> = { error: true };
const defaults: IDataProps<any> = { error: true };
const [appData, setAppData] = useState<IDataProps<IAppListProps>>(defaults);
const [bookmarkData, setBookmarkData] =
@ -64,7 +64,14 @@ export const useFetcher = (): IFetchProps => {
useState<IDataProps<IGreeterDataProps>>(defaults);
const callback = useCallback(() => {
let files = ["apps", "bookmarks", "search", "themes", "imprint", "greeter"];
const files = [
"apps",
"bookmarks",
"search",
"themes",
"imprint",
"greeter",
];
Promise.all(files.map((f) => fetchFile(f))).then(
([apps, bookmarks, search, themes, imprint, greeter]: any) => {

View file

@ -58,7 +58,7 @@ export const getTheme = (scheme?: string): IThemeProps => {
currentScheme = "dark-theme";
}
let theme =
const theme =
currentScheme === "dark-theme"
? localStorage.getItem("dark-theme")
: localStorage.getItem("light-theme");