30 lines
651 B
Markdown
30 lines
651 B
Markdown
# 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 |
|