From 67e6706d470d457610800311137816feeaa92592 Mon Sep 17 00:00:00 2001 From: adueck Date: Tue, 1 Nov 2022 23:57:54 +0500 Subject: [PATCH] cleanup --- account/src/lib/dictionary.ts | 1 - 1 file changed, 1 deletion(-) 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);