Fix: Nach Login ohne Hund → Onboarding mit Skip-Option statt direkt zu dog-profile (SW by-v748)

This commit is contained in:
rene 2026-05-06 21:02:55 +02:00
parent fd87c9af7b
commit 81bc0f50a0
6 changed files with 11 additions and 8 deletions

View file

@ -1689,11 +1689,11 @@ window.Page_settings = (() => {
_offerPushNotifications();
}
// Nach Login: Welten initialisieren (mit User-State) oder Profil anlegen
// Nach Login: Welten initialisieren oder Onboarding (mit Skip-Option)
if (_appState.activeDog) {
window.Worlds?.init(_appState);
} else {
App.navigate('dog-profile');
App.navigate('onboarding');
}
});
});