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:
parent
89afd83f1a
commit
f7eb633689
1 changed files with 1 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue