From 52996d3a76fe60afa6d067eab2e07bbc9dbb68c4 Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 12 Jul 2024 01:37:41 +0900 Subject: [PATCH] fix(switch): add displayName --- packages/react/components/Switch.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react/components/Switch.tsx b/packages/react/components/Switch.tsx index c804eba..cb52209 100644 --- a/packages/react/components/Switch.tsx +++ b/packages/react/components/Switch.tsx @@ -80,5 +80,6 @@ const Switch = React.forwardRef((props, ref) => { ); }); +Switch.displayName = "Switch"; export { Switch };