From 779005834a1ce2eca6445a961533cb3647082cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Wed, 24 Jun 2026 12:06:00 +0000 Subject: [PATCH] chore: remove unused DialogFooter export from dialog component DialogFooter is defined in the dialog.tsx shadcn/ui component but no consumer imports it. The component definition remains in the file (consistent with the pattern used in PR #203 and PR #207 for other unused dialog subcomponent exports), only the redundant export entry is removed. Verified: grep confirms no files import DialogFooter from anywhere in the codebase. --- src/components/ui/dialog.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/ui/dialog.tsx b/src/components/ui/dialog.tsx index 11dd612..a6082e1 100644 --- a/src/components/ui/dialog.tsx +++ b/src/components/ui/dialog.tsx @@ -114,7 +114,6 @@ export { DialogTrigger, DialogContent, DialogHeader, - DialogFooter, DialogTitle, DialogDescription, }