Skip to content

Commit

Permalink
[#1188] react のビルドエラーの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
okakyo committed Feb 22, 2024
1 parent bdbe4a7 commit 3c6f270
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Props = BaseProps & {
isDirectionFixed?: boolean;
children: ReactNode;
content: ReactNode;
expand: boolean;
expand?: boolean;
};

const Tooltip: FC<Props> = ({
Expand All @@ -29,7 +29,7 @@ const Tooltip: FC<Props> = ({
isDirectionFixed = false,
children,
content,
expand,
expand = false,
}) => {
const [isHover, setIsHover] = useState(false);
const anchor = useRef<HTMLDivElement | null>(null);
Expand Down

0 comments on commit 3c6f270

Please sign in to comment.