Fix lint error

This commit is contained in:
Patricia Hillebrandt 2023-12-07 07:55:35 -03:00
parent 00b7b78ee8
commit 90dc7aaa41
1 changed files with 2 additions and 1 deletions

View File

@ -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,
},
} );
}