Fix stupid bugs that prevent the code being deployed.

This commit is contained in:
yuanhau 2025-05-27 22:16:15 +08:00
parent cb34764c27
commit c66b9cde13
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ const pullWord = async () => {
if (words.length === 0) {
const req = await fetch("/api/contentcheck/kidunfriendlycontent");
const res = await req.json();
pullWord = res.words;
words = res.words;
return res.words
}
return pullWord;