fix: Fix product module creation example (#10228)

This commit is contained in:
Stevche Radevski
2024-11-25 16:23:54 +01:00
committed by GitHub
parent 5022a7c08e
commit 6e447da33c

View File

@@ -82,16 +82,15 @@ const products = await productService.createProducts([
options: [
{
title: "Color",
values: ["Black", "White"],
},
],
variants: [
{
title: "Black Shirt",
options: [
{
value: "Black",
},
],
options: {
Color: "Black",
},
},
],
},