diff --git a/src/components/LanguageDropdown.astro b/src/components/LanguageDropdown.astro index 38c832a..cb150f2 100644 --- a/src/components/LanguageDropdown.astro +++ b/src/components/LanguageDropdown.astro @@ -302,7 +302,7 @@ const currentLanguage = languages.find((lang) => lang.code === currentLang) || l // Force a complete page reload to ensure all content is updated to the new language // This bypasses any client-side caching and ensures a fresh server render - // window.location.href = newFullUrl + '?t=' + Date.now(); + window.location.href = newFullUrl + '?t=' + Date.now(); }); });