diff --git a/src/features/ui/index.tsx b/src/features/ui/index.tsx index 1d53834a2..5a97770e0 100644 --- a/src/features/ui/index.tsx +++ b/src/features/ui/index.tsx @@ -166,6 +166,7 @@ const SwitchingColumnsArea: React.FC = ({ children }) => const features = useFeatures(); const { search } = useLocation(); const { isLoggedIn } = useLoggedIn(); + const standalone = useAppSelector(isStandalone); const { authenticatedProfile, cryptoAddresses } = useSoapboxConfig(); const hasCrypto = cryptoAddresses.size > 0; @@ -177,6 +178,8 @@ const SwitchingColumnsArea: React.FC = ({ children }) => // Ex: use /login instead of /auth, but redirect /auth to /login return ( + {standalone && } +