From 78ea14c5683f15c9d44ad8a5d14dd82762cd6364 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 01:01:38 +0900 Subject: [PATCH] fix(dialog): add missing displayName on ref forwarded components --- packages/react/components/Dialog/Component.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/react/components/Dialog/Component.tsx b/packages/react/components/Dialog/Component.tsx index c2825e9..f5580b4 100644 --- a/packages/react/components/Dialog/Component.tsx +++ b/packages/react/components/Dialog/Component.tsx @@ -129,6 +129,7 @@ const DialogOverlay = React.forwardRef( ); }, ); +DialogOverlay.displayName = "DialogOverlay"; /** * ========================= @@ -204,6 +205,7 @@ const DialogContent = React.forwardRef( ); }, ); +DialogContent.displayName = "DialogContent"; /** * ========================= @@ -268,6 +270,8 @@ const DialogHeader = React.forwardRef( }, ); +DialogHeader.displayName = "DialogHeader"; + /** * ========================= * DialogTitle / DialogSubtitle @@ -342,6 +346,7 @@ const DialogTitle = React.forwardRef( ); }, ); +DialogTitle.displayName = "DialogTitle"; const DialogSubtitle = React.forwardRef< HTMLHeadingElement, @@ -360,6 +365,7 @@ const DialogSubtitle = React.forwardRef< ); }); +DialogSubtitle.displayName = "DialogSubtitle"; /** * ========================= @@ -401,6 +407,7 @@ const DialogFooter = React.forwardRef( ); }, ); +DialogFooter.displayName = "DialogFooter"; interface DialogControllers { context: IDialogContext;