diff --git a/src/state/shell/logged-out.tsx b/src/state/shell/logged-out.tsx index 1a8e2acf..dc78d03d 100644 --- a/src/state/shell/logged-out.tsx +++ b/src/state/shell/logged-out.tsx @@ -49,7 +49,7 @@ const ControlsContext = React.createContext({ export function Provider({children}: React.PropsWithChildren<{}>) { const activeStarterPack = useActiveStarterPack() const {hasSession} = useSession() - const shouldShowStarterPack = false + const shouldShowStarterPack = Boolean(activeStarterPack?.uri) && !hasSession const [state, setState] = React.useState({ showLoggedOut: shouldShowStarterPack, requestedAccountSwitchTo: shouldShowStarterPack