From f52f262f71927df01290003d85b75a89a710bb9d Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 20 Aug 2025 12:09:30 +0200 Subject: [PATCH] fix: unclosed word tags in words history !nuf --- frontend/src/ts/test/test-ui.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts index 459e1d471..1374b552d 100644 --- a/frontend/src/ts/test/test-ui.ts +++ b/frontend/src/ts/test/test-ui.ts @@ -1395,7 +1395,9 @@ async function loadWordsHistory(): Promise { wordEl += "" + char + ""; } wordEl += ""; - } catch {} + } catch { + wordEl += ""; + } } wordsHTML += wordEl; }