From f501805111de8579df3078b1d0b7c10f9e75b236 Mon Sep 17 00:00:00 2001 From: brios <127139797+balazs-szucs@users.noreply.github.com> Date: Tue, 25 Aug 2026 13:21:10 +0200 Subject: [PATCH] Update ignored warnings in console-clean.spec.ts Removed specific warning from ignored list in tests. --- frontend/editor/src/core/tests/stubbed/console-clean.spec.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/editor/src/core/tests/stubbed/console-clean.spec.ts b/frontend/editor/src/core/tests/stubbed/console-clean.spec.ts index 335a066ccf..5379f98705 100644 --- a/frontend/editor/src/core/tests/stubbed/console-clean.spec.ts +++ b/frontend/editor/src/core/tests/stubbed/console-clean.spec.ts @@ -24,9 +24,8 @@ type ConsoleEntry = { }; const IGNORED: RegExp[] = [ - // react-i18next logs a warning when useTranslation is invoked before async TOML - // locale resources settle during initial direct-navigation bootstrap. - /react-i18next::i18next: useTranslation: suspended while translations are loading/, + // Add entries here only with a comment explaining why the warning is + // unavoidable. Default: keep this list empty. ]; function shouldIgnore(text: string): boolean {