fix: remove leading campaign product bullet
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m42s

This commit is contained in:
Cauê Faleiros
2026-06-10 16:07:55 -03:00
parent 7e3d0be595
commit 5883dc6298
2 changed files with 5 additions and 5 deletions

View File

@@ -17,7 +17,7 @@ const formatProductNameForDisplay = (name) => {
const formatProductList = (productNames) => {
const displayNames = productNames.map(formatProductNameForDisplay);
return displayNames.map(name => `${name}`).join(' ');
return displayNames.join(' ');
};
const groupCampaignRowsByBaseProduct = (rows) => {