Use direct satellite dashboard links

This commit is contained in:
James Smith
2026-03-18 23:35:24 +00:00
parent 317e0d7108
commit 73e17e8509
2 changed files with 7 additions and 2 deletions

View File

@@ -330,6 +330,11 @@ const CommandPalette = (function() {
}
function goToMode(mode) {
if (mode === 'satellite') {
window.location.href = '/satellite/dashboard';
return;
}
const welcome = document.getElementById('welcomePage');
if (welcome && getComputedStyle(welcome).display !== 'none') {
welcome.style.display = 'none';