fix: fixes / extra documentation texts

This commit is contained in:
Raymond
2025-01-04 18:18:37 -05:00
parent 82a0473287
commit 42a4a11c49
4 changed files with 64 additions and 53 deletions

View File

@@ -1,4 +1,5 @@
import useLocalStorage from "../hooks/useLocalStorage.svelte";
import { USERBOX_DEFAULT_URL } from "../config";
export default class DDSCache {
constructor(db: IDBDatabase | undefined) {
@@ -69,5 +70,5 @@ export default class DDSCache {
private urlCache: {scale: number, path: string, url: string}[] = [];
private db: IDBDatabase | undefined;
private userboxURL = useLocalStorage("userboxURL", "");
userboxURL = useLocalStorage("userboxURL", USERBOX_DEFAULT_URL);
}