diff --git a/account/src/lib/dictionary.ts b/account/src/lib/dictionary.ts index 04dd5cf..3fffaac 100644 --- a/account/src/lib/dictionary.ts +++ b/account/src/lib/dictionary.ts @@ -18,7 +18,6 @@ const lokidb = new loki("", { export let dictionary: T.Dictionary | undefined = undefined; // TODO: Abstract dictionary fetch - export function updateDictionary() { fetch(process.env.LINGDOCS_DICTIONARY_URL || "").then(res => res.arrayBuffer()).then(buffer => { const dict = readDictionary(buffer as Uint8Array);