fix(welcome): rotate startup tips (#5871)

This commit is contained in:
adabarbulescu
2026-08-07 20:12:21 +03:00
committed by GitHub
parent c8a012d4d2
commit 5ddef23d94
+1 -1
View File
@@ -1005,7 +1005,7 @@
var tips = mobile ? phone : desktop;
var el = document.getElementById('welcome-tip');
if (el) {
el.textContent = 'Pick a model if you want, or just type.';
el.textContent = tips[Math.floor(Math.random() * tips.length)];
}
fetch('/api/version').then(function(r){return r.json()}).then(function(d){
if (d.version) window._appVersion = d.version;