chore(ui): Footer-Version entfernt; zukünftige Builds zeigen keine Version im UI

This commit is contained in:
vibe-bot 2025-08-10 21:32:34 +02:00
parent 1e6c5ad402
commit 1fb80209f3

View file

@ -672,15 +672,7 @@ export default function App() {
);
})}
</main>
{/* Footer: Version/Channel */}
<footer className="footer-info">
<span>
v{import.meta.env.VITE_APP_VERSION || ''}
{import.meta.env.VITE_BUILD_CHANNEL === 'nightly' && (
<span className="ml-2"> Nightly</span>
)}
</span>
</footer>
{/* Footer intentionally left without version display */}
</div>
{showTop && (
<button type="button" className="back-to-top" aria-label="Nach oben" onClick={()=>window.scrollTo({top:0, behavior:'smooth'})}> Top</button>