Fix docker

This commit is contained in:
diyaa
2026-03-13 04:01:58 +01:00
parent c9e9ae6b90
commit 2b5e91377c
3 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -20,5 +20,5 @@ export default function HomePage({ params }: { params: { locale: string } }) {
const locale = params.locale as Locale;
const dictionary = getDictionary(locale);
return <HeroSection locale={locale} home={dictionary.home} common={dictionary.common} />;
return <HeroSection locale={locale} home={dictionary.home} />;
}