This commit is contained in:
Daniel Arantes Loverde
2026-06-12 16:47:18 -03:00
parent 35418cc4a2
commit 8b9ebdcb44
6 changed files with 150 additions and 8 deletions

View File

@@ -231,7 +231,7 @@ struct PizzaProductDetailSheet: View {
)
.clipShape(RoundedRectangle(cornerRadius: AppLayout.radiusXL, style: .continuous))
Text("Pizza de varios sabores")
Text("Escolha seu sabor")
.font(AppTypography.heading2)
.foregroundStyle(AppColors.textPrimary)
@@ -291,7 +291,7 @@ struct PizzaProductDetailSheet: View {
id: cartItemId,
productId: selectedFlavorProducts.first?.id ?? category.id,
storeId: storeId,
name: "Pizza de varios sabores",
name: "Escolha seu sabor",
imageURL: representativeImage,
details: selectedDetailsText,
choices: pizzaChoices.isEmpty ? nil : pizzaChoices,