From ef1a25c8c41fd0d2be7af12711c64851631b9226 Mon Sep 17 00:00:00 2001 From: Ducky Date: Tue, 3 Sep 2024 19:21:06 +0100 Subject: [PATCH] Zio Blue: revert commit e0cafb20d6d0ebf2113419c4d5adfbe966abefb6. --- src/state/shell/logged-out.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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