diff --git a/frontend/pages/product/[id].vue b/frontend/pages/product/[id].vue index d0dde11..509dac8 100644 --- a/frontend/pages/product/[id].vue +++ b/frontend/pages/product/[id].vue @@ -14,7 +14,7 @@ const id = route.params.id as string | undefined; const { suspense: suspenseProduct, data: product } = useGetProduct(id); useSeoMeta({ - title: `محصول ${product.value?.name}`, + title: product.value?.name, ogImage: product.value?.variants[0].images[0].image, twitterImage: product.value?.variants[0].images[0].image, ogDescription: product.value?.description,