fix(web): shorten PWA install app name

This commit is contained in:
Greg Haynes
2026-07-12 19:54:35 -07:00
parent 3362ebbfa3
commit 128122fdd9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
<!-- Web app manifest (endpoint-first with data URL fallback) -->
<script>
const baseUrl = location.origin;
const defaultAppName = 'OpenChamber - AI Coding Assistant';
const defaultAppName = 'OpenChamber';
const defaultShortName = 'OpenChamber';
const pwaNameStorageKey = 'openchamber.pwaName';
const pwaOrientationStorageKey = 'openchamber.pwaOrientation';
+1 -1
View File
@@ -1,5 +1,5 @@
{
"name": "OpenChamber - AI Coding Companion",
"name": "OpenChamber",
"short_name": "OpenChamber",
"description": "OpenChamber desktop companion for the OpenCode AI coding agent",
"start_url": "/",
@@ -1,4 +1,4 @@
const DEFAULT_PWA_APP_NAME = 'OpenChamber - AI Coding Assistant';
const DEFAULT_PWA_APP_NAME = 'OpenChamber';
const mapPwaOrientationToManifest = (value) => {
if (value === 'portrait') {
return 'portrait-primary';