Skip to content

Commit

Permalink
refactor: 불필요한 코드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
YuHyun-P committed Feb 3, 2024
1 parent 022934b commit f1cd7be
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/frontend/src/components/coachmark/Coachmark.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import ReactJoyride, { type Props as JoyrideProps } from "react-joyride";

import color from "../../design-system/tokens/color";
import { coachmarkZIndex } from "../../design-system/tokens/utils.css";
import useMount from "../../hooks/useMount";

import { CoachTooltip } from "./CoachTooltip";

Expand All @@ -18,9 +17,6 @@ export type CoachmarkProps = Partial<
>;

export function Coachmark(props: CoachmarkProps) {
const { mounted } = useMount();

if (!mounted) return null;
return (
<ReactJoyride
{...props}
Expand Down

0 comments on commit f1cd7be

Please sign in to comment.