fix: pre-cache to not include extra files

This commit is contained in:
Paul Makles
2022-03-25 11:17:04 +00:00
parent 5f65b31f8b
commit 42019214f6
9 changed files with 71 additions and 222 deletions

View File

@@ -1,14 +1,9 @@
import { runInAction } from "mobx";
import { Session } from "revolt-api/types/Auth";
import { Language } from "../../context/Locale";
import {
Fonts,
MonospaceFonts,
Overrides,
ThemeOptions,
} from "../../context/Theme";
import { Fonts, MonospaceFonts, Overrides } from "../../context/Theme";
import { Language } from "../../../external/lang/Languages";
import State from "../State";
import { Data as DataAuth } from "../stores/Auth";
import { Data as DataLocaleOptions } from "../stores/LocaleOptions";

View File

@@ -1,7 +1,6 @@
import { action, computed, makeAutoObservable } from "mobx";
import { Language, Languages } from "../../context/Locale";
import { Languages, Language } from "../../../external/lang/Languages";
import Persistent from "../interfaces/Persistent";
import Store from "../interfaces/Store";
import Syncable from "../interfaces/Syncable";