diff --git a/packages/ui/src/components/ui/popover.tsx b/packages/ui/src/components/ui/popover.tsx
index 78724df..1277829 100644
--- a/packages/ui/src/components/ui/popover.tsx
+++ b/packages/ui/src/components/ui/popover.tsx
@@ -9,6 +9,10 @@ function Popover({ ...props }: PopoverPrimitive.Root.Props) {
return
}
+function PopoverPortal({ ...props }: PopoverPrimitive.Portal.Props) {
+ return
+}
+
function PopoverTrigger({ ...props }: PopoverPrimitive.Trigger.Props) {
return
}
@@ -82,6 +86,7 @@ function PopoverDescription({
export {
Popover,
+ PopoverPortal,
PopoverContent,
PopoverDescription,
PopoverHeader,