From 357a989b9d80b28472f64562b6cf7223fcdd32a1 Mon Sep 17 00:00:00 2001 From: Cyril Date: Thu, 7 May 2026 15:39:24 +0200 Subject: [PATCH] =?UTF-8?q?fixup!=20=E2=99=BB=EF=B8=8F=20decouple=20PiP=20?= =?UTF-8?q?behavior=20from=20shared=20primitives?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/frontend/src/primitives/Menu.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/frontend/src/primitives/Menu.tsx b/src/frontend/src/primitives/Menu.tsx index 873782ee..be87203a 100644 --- a/src/frontend/src/primitives/Menu.tsx +++ b/src/frontend/src/primitives/Menu.tsx @@ -13,12 +13,10 @@ export const Menu = ({ children, variant = 'light', placement = 'top', - shouldFlip, }: { children: [trigger: ReactNode, menu: ReactNode] variant?: 'dark' | 'light' placement?: 'bottom' | 'top' | 'left' | 'right' - shouldFlip?: boolean }) => { const [trigger, menu] = children const boundaryElement = useOverlayBoundaryElement() @@ -28,7 +26,6 @@ export const Menu = ({ {trigger}