diff --git a/desktop/src/app/AppBestiePopover.tsx b/desktop/src/app/AppBestiePopover.tsx new file mode 100644 index 00000000000..d07fb0f9864 --- /dev/null +++ b/desktop/src/app/AppBestiePopover.tsx @@ -0,0 +1,7 @@ +import { BestieChatPopover } from "@/features/messages/ui/BestieChatPopover"; +import { useFeatureEnabled } from "@/shared/features"; + +export function AppBestiePopover({ hidden }: { hidden: boolean }) { + const bestieEnabled = useFeatureEnabled("bestie"); + return bestieEnabled ? : null; +} diff --git a/desktop/src/app/AppShell.tsx b/desktop/src/app/AppShell.tsx index f72e9578e77..dd8c54ae484 100644 --- a/desktop/src/app/AppShell.tsx +++ b/desktop/src/app/AppShell.tsx @@ -7,6 +7,7 @@ import { AppShellProvider } from "@/app/AppShellContext"; import { AppShellOverlays, TerminalBootstrap } from "@/app/AppShellOverlays"; import { AppShellChannelSurface } from "@/app/AppShellChannelSurface"; import { AppHuddleShell } from "@/app/AppHuddleShell"; +import { AppBestiePopover } from "@/app/AppBestiePopover"; import { AppTopChrome } from "@/app/AppTopChrome"; import { type TerminalContextOverride, @@ -787,6 +788,7 @@ export function AppShell() { onGoForward={goForward} /> ) : null} +