From 90dc7aaa41604b304c03776dfcad8345e29217b2 Mon Sep 17 00:00:00 2001 From: Patricia Hillebrandt Date: Thu, 7 Dec 2023 07:55:35 -0300 Subject: [PATCH] Fix lint error --- .../client/customize-store/design-with-ai/services.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/woocommerce-admin/client/customize-store/design-with-ai/services.ts b/plugins/woocommerce-admin/client/customize-store/design-with-ai/services.ts index 1e8d7771be0..b23e0b9f5df 100644 --- a/plugins/woocommerce-admin/client/customize-store/design-with-ai/services.ts +++ b/plugins/woocommerce-admin/client/customize-store/design-with-ai/services.ts @@ -259,7 +259,8 @@ export const updateStorePatterns = async ( method: 'POST', data: { products_information: product, - last_product: index === response.product_content.length - 1, + last_product: + index === response.product_content.length - 1, }, } ); }