Skip to content

Commit ab89821

Browse files
TortoiseWolfeclaude
andcommitted
Fix manifest description in generate script
The generate-manifest.js script had a hardcoded old template description that was overwriting manifest.json on every build. Updated to use the correct SpokeToWork app description. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b7b015a commit ab89821

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SpokeToWork",
33
"short_name": "SpokeToWork",
4-
"description": "SpokeToWork - Progressive Web App for in-person job hunting. Track companies and generate optimized bicycle routes.",
4+
"description": "SpokeToWork - Modern Next.js template with PWA, theming, and interactive components",
55
"theme_color": "#2563eb",
66
"background_color": "#1a1a1a",
77
"display": "standalone",

scripts/generate-manifest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if (process.env.NEXT_PUBLIC_BASE_PATH !== undefined) {
5050
const manifest = {
5151
name: projectConfig.projectName,
5252
short_name: projectConfig.projectName.substring(0, 12),
53-
description: `${projectConfig.projectName} - Modern Next.js template with PWA, theming, and interactive components`,
53+
description: `${projectConfig.projectName} - Progressive Web App for in-person job hunting. Track companies and generate optimized bicycle routes.`,
5454
theme_color: '#2563eb',
5555
background_color: '#1a1a1a', // Dark splash screen (Lighthouse Phase 1)
5656
display: 'standalone',

0 commit comments

Comments
 (0)