settings: About hero uses the Orbit project icon, not the deployment/server icon

This commit is contained in:
reverse 2026-06-20 03:03:53 +00:00
parent 978defcbf9
commit 1bd4a3ca8c
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
// Tchatou service worker — installable PWA + offline app shell.
// Scope: /app/. Only handles same-origin /app/ GETs; the IRC websocket and all
// API calls (cloudflare, change_password, upload) pass straight through.
const CACHE = 'tchatou-v30';
const CACHE = 'tchatou-v31';
const SHELL = ['/app/', '/app/index.html', '/app/favicon.svg', '/app/manifest.webmanifest'];
self.addEventListener('install', (e) => {

View file

@ -413,7 +413,7 @@ function AboutSection() {
<div className="scard">
<div className="scard__body">
<div className="about-hero">
<span className="about-hero__mark"><img src={cfg.branding.icon} alt="" width={44} height={44} /></span>
<span className="about-hero__mark"><img src={`${import.meta.env.BASE_URL}orbit-icon.svg`} alt="Orbit" width={44} height={44} /></span>
<div className="about-hero__txt">
<div className="about-hero__name">Orbit <span className="about-hero__ver">v{__APP_VERSION__}</span></div>
<div className="about-hero__tag">{t('about.tagline')}</div>