From 93d75ef0796d6e992387bf74fb5fdf7e16e9321e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Sat, 20 Jun 2026 10:08:14 +0000 Subject: [PATCH] refactor(ui): remove unused SheetPortal and SheetOverlay exports These components are defined and used internally by SheetContent but are exported even though no external code imports them. Keeping the internal definitions as they are used by SheetContent; only removing them from the export block. Analogous to the DialogFooter removal in PR #179. --- src/components/ui/sheet.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/ui/sheet.tsx b/src/components/ui/sheet.tsx index 3a70ae8..64da594 100644 --- a/src/components/ui/sheet.tsx +++ b/src/components/ui/sheet.tsx @@ -112,8 +112,6 @@ SheetDescription.displayName = SheetPrimitive.Description.displayName export { Sheet, - SheetPortal, - SheetOverlay, SheetTrigger, SheetContent, SheetHeader,