fix(mobile): align background, API config, and search bar with PWA
Run Tests on Branches / Detect Changes (push) Successful in 11s
Run Tests on Branches / Backend Tests (push) Has been skipped
Run Tests on Branches / Frontend Tests (push) Has been skipped
Run Tests on Branches / Frontend Mobile Tests (push) Successful in 1m46s

- Add background image matching PWA (bg.png with opacity + overlay)
- Fix production API URL to farmacias.hacecalor.net
- Replace raw fetch calls in alerts.tsx with configured api service
- Constrain SearchBar max-width to 420px to prevent horizontal clipping
This commit is contained in:
Antoni Nuñez Romeu
2026-07-08 14:23:58 +02:00
parent a3cea35b13
commit d6db48b695
6 changed files with 35 additions and 11 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const ENV = {
API_BASE_URL: 'http://localhost:3001/api',
},
production: {
API_BASE_URL: 'https://your-production-api.com/api',
API_BASE_URL: 'https://farmacias.hacecalor.net/api',
},
};