From f7eb6336895f185ffb6c34d5b4840c219a57cdf3 Mon Sep 17 00:00:00 2001 From: Padreug Date: Tue, 9 Jun 2026 19:40:24 +0200 Subject: [PATCH] fix(events): drop lowercase from PWA description brand name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- vite.events.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.events.config.ts b/vite.events.config.ts index 83f8543..2e592ff 100644 --- a/vite.events.config.ts +++ b/vite.events.config.ts @@ -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',