feat(F-192): completed feature

This commit is contained in:
chattie
2026-08-23 07:53:17 +02:00
parent e542b180ad
commit a372e5abfb
9 changed files with 107 additions and 31 deletions

View File

@@ -0,0 +1,29 @@
# F-192 — Implementer Evidence
## Feature
Simplify storefront net price VAT label.
## Change
### `project/frontend/src/app/products/[slug]/page.tsx` (line 152)
Changed the net price label from:
```
{formatPrice(netCents)} sin IVA · IVA {vatPercent}%
```
To:
```
{formatPrice(netCents)} sin IVA ({vatPercent}%)
```
Removes the separator " · " and the duplicate "IVA" word as specified.
Only one occurrence found in the entire codebase (frontend + storefront).
## Verification
| Check | Result |
|-------|--------|
| `npx tsc --noEmit` (frontend) | 0 errors |
| `npm test` (backend) | 269 passed, 96 skipped |
| `./scripts/verify.sh` | OK |