Commit 69050a41 authored by Chunchi Che's avatar Chunchi Che

remove unused log in string.ts

parent 08c20a9b
...@@ -8,8 +8,6 @@ export const DESCRIPTION_LIMIT = 10000; ...@@ -8,8 +8,6 @@ export const DESCRIPTION_LIMIT = 10000;
export async function initStrings() { export async function initStrings() {
const strings = await (await fetch(stringsUrl)).text(); const strings = await (await fetch(stringsUrl)).text();
console.log({ strings });
const lineIter = strings.split("\n"); const lineIter = strings.split("\n");
for (const line of lineIter) { for (const line of lineIter) {
if (!line.startsWith("#") && line !== "") { if (!line.startsWith("#") && line !== "") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment