diff --git a/frontend/app/admin/products/actions.ts b/frontend/app/admin/products/actions.ts index 7ff17bba..288684d9 100644 --- a/frontend/app/admin/products/actions.ts +++ b/frontend/app/admin/products/actions.ts @@ -63,6 +63,8 @@ export async function updateProductWithTags(formData: FormData, tags: string[]) const id = Number(formData.get('id')); console.log('[actions:updateProductWithTags] called for product id:', id, 'tags:', tags); const name = String(formData.get('name') || '').trim(); + const canonicalName = String(formData.get('canonicalName') || '').trim(); + const category = String(formData.get('category') || '').trim(); const subcategory = String(formData.get('subcategory') || '').trim(); const brand = String(formData.get('brand') || '').trim(); const categoryIdRaw = formData.get('categoryId');