diff --git a/src/providers/CustomThemeProvider.tsx b/src/providers/CustomThemeProvider.tsx index b876cfa..22e2e5d 100644 --- a/src/providers/CustomThemeProvider.tsx +++ b/src/providers/CustomThemeProvider.tsx @@ -10,7 +10,6 @@ export const CustomThemeProvider: React.FC<{ children: React.ReactNode }> = ({ const { i18n } = useTranslation(); const theme = useMemo(() => { - console.log('Theme recalculated, lang:', i18n.language); const direction = i18n.dir(i18n.language); const isEnglish = i18n.language?.startsWith('en'); const fontFamily = isEnglish ? 'iranyekanEnNum' : 'iranyekan';