fix(ManaAccountView): extra()-Slot immer zeigen (auch ausgeloggt)

soft-auth-Apps brauchen ihre App-Sektionen (Darstellung etc.) auch im
abgemeldeten Zustand sichtbar; extra() lief vorher nur signed-in.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-05-28 11:38:47 +02:00
parent 4a77b57c80
commit 1a491c3358

View file

@ -103,6 +103,10 @@ public struct ManaAccountView<Extra: View>: View {
} else {
signedOutSection
}
// App-spezifische Sektionen erscheinen in BEIDEN Zuständen
// soft-auth-Apps (pageta u.a.) brauchen ihre Settings auch
// ausgeloggt sichtbar.
extra()
}
.sheet(isPresented: $showChangeEmail) {
ManaChangeEmailView(
@ -127,8 +131,6 @@ public struct ManaAccountView<Extra: View>: View {
}
}
extra()
if showsSecuritySection {
Section("Sicherheit") {
if config.showChangeEmail {