From 0916c483d4be3f5b1e75a938e1ac6648664138ae Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 01:35:27 +0900 Subject: [PATCH] fix(input): add displayName --- packages/react/components/Input.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/react/components/Input.tsx b/packages/react/components/Input.tsx index 6541e04..69a81fe 100644 --- a/packages/react/components/Input.tsx +++ b/packages/react/components/Input.tsx @@ -63,6 +63,7 @@ const InputFrame = React.forwardRef( ); }, ); +InputFrame.displayName = "InputFrame"; interface InputProps extends VariantProps, @@ -113,5 +114,6 @@ const Input = React.forwardRef((props, ref) => { /> ); }); +Input.displayName = "Input"; export { InputFrame, Input };