fix(events): drop lowercase from PWA description brand name

The description template was `Discover ${APP_NAME.toLowerCase()} near
you`, producing "Discover bouge near you" / "Discover events near you"
— inconsistent with the title casing. The brand should match the
PWA name/short_name, not be lowercased.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Padreug 2026-06-09 19:40:24 +02:00
commit f7eb633689

View file

@ -87,7 +87,7 @@ export default defineConfig(({ mode }) => ({
manifest: {
name: APP_NAME,
short_name: APP_NAME,
description: `Discover ${APP_NAME.toLowerCase()} near you`,
description: `Discover ${APP_NAME} near you`,
theme_color: '#1f2937',
background_color: '#ffffff',
display: 'standalone',