From 5ada86a78a797efc77424cc8ccb29473b568c7fc Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Tue, 16 Jul 2024 07:43:28 +0200 Subject: [PATCH] Update index.ts --- app/masks/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/masks/index.ts b/app/masks/index.ts index 5e4c39f9d..444a6a9c3 100644 --- a/app/masks/index.ts +++ b/app/masks/index.ts @@ -30,7 +30,7 @@ if (typeof window != "undefined") { .then((res) => res.json()) .catch((error) => { console.error("[Fetch] failed to fetch masks", error); - return { cn: [], tw: [], en: [] }; + return { en: [] }; }) .then((masks) => { const {en = [] } = masks;