fix: product detail page passing wrong locale to ProductDetail and Footer

This commit is contained in:
Unchained
2026-03-24 11:34:52 +02:00
parent a5cd048a6e
commit ead03bc04f

View File

@@ -95,10 +95,10 @@ export default async function ProductPage({ params }: ProductPageProps) {
<ProductDetail
product={product}
relatedProducts={relatedProducts}
locale={productLocale}
locale={locale}
/>
</main>
<Footer />
<Footer locale={locale} />
</>
);
}