diff --git a/src/components/Authenticator/authenticator.ts b/src/components/Authenticator/authenticator.ts index 072f77ddc..db7cca139 100644 --- a/src/components/Authenticator/authenticator.ts +++ b/src/components/Authenticator/authenticator.ts @@ -33,8 +33,8 @@ function handleGuest() { * Prepares the UI for the user who is logged out */ function handleAuthenticated() { - showHideAuthElements('show'); showHideGuestElements('hide'); + showHideAuthElements('show'); } function handleAuthRequired() { diff --git a/src/components/Navigation/Navigation.astro b/src/components/Navigation/Navigation.astro index c03219c1d..c9e03ca26 100644 --- a/src/components/Navigation/Navigation.astro +++ b/src/components/Navigation/Navigation.astro @@ -26,6 +26,8 @@ import AccountDropdown from './AccountDropdown.astro';