fix(welcome): rotate startup tips

This commit is contained in:
adabarbulescu 2026-08-01 14:16:01 +03:00
parent 25c9e735ef
commit bc78e312c3

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;