From 0b740bb00785e4f390045671133d485920dc076f Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 6 Nov 2025 12:05:38 +0200 Subject: [PATCH] chore(react/type_widgets): remove logging --- .../widgets/type_widgets/options/components/LocaleSelector.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/client/src/widgets/type_widgets/options/components/LocaleSelector.tsx b/apps/client/src/widgets/type_widgets/options/components/LocaleSelector.tsx index 0161ae6a8..5628cc798 100644 --- a/apps/client/src/widgets/type_widgets/options/components/LocaleSelector.tsx +++ b/apps/client/src/widgets/type_widgets/options/components/LocaleSelector.tsx @@ -13,7 +13,6 @@ export function LocaleSelector({ id, locales, currentValue, onChange, defaultLoc extraChildren?: ComponentChildren }) { const [ activeLocale, setActiveLocale ] = useState(defaultLocale?.id === currentValue ? defaultLocale : locales.find(l => l.id === currentValue)); - console.log("defaultLocale ", defaultLocale, currentValue, activeLocale) const processedLocales = useMemo(() => { const leftToRightLanguages = locales.filter((l) => !l.rtl);