From 3c6f2702b0abd653f9018c4a699dc1dd9ba207f7 Mon Sep 17 00:00:00 2001 From: okakyo <0622okakyo@gmail.com> Date: Fri, 23 Feb 2024 01:05:51 +0900 Subject: [PATCH] =?UTF-8?q?[#1188]=20react=20=E3=81=AE=E3=83=93=E3=83=AB?= =?UTF-8?q?=E3=83=89=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=AE=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/base/tooltip/components/tooltip.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/wiz-ui-react/src/components/base/tooltip/components/tooltip.tsx b/packages/wiz-ui-react/src/components/base/tooltip/components/tooltip.tsx index 36b181727..b159cdc4b 100644 --- a/packages/wiz-ui-react/src/components/base/tooltip/components/tooltip.tsx +++ b/packages/wiz-ui-react/src/components/base/tooltip/components/tooltip.tsx @@ -18,7 +18,7 @@ type Props = BaseProps & { isDirectionFixed?: boolean; children: ReactNode; content: ReactNode; - expand: boolean; + expand?: boolean; }; const Tooltip: FC = ({ @@ -29,7 +29,7 @@ const Tooltip: FC = ({ isDirectionFixed = false, children, content, - expand, + expand = false, }) => { const [isHover, setIsHover] = useState(false); const anchor = useRef(null);