Skip to content

Commit 67cb732

Browse files
committed
fix: build 오류 수정
1 parent 7138252 commit 67cb732

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/web/src/components/(with-side-bar)/library/content-item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CategoryContentDTO } from "@/models/content";
1+
import type { CategoryContentDTO } from "@repo/types";
22
import { cn } from "@repo/ui/utils/cn";
33

44
import { FileText, Globe, Youtube } from "lucide-react";

apps/web/src/components/topic/custom-node.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import {
1010
useUpdateContentPosition,
1111
useUpdateContentSize,
1212
} from "@/lib/tanstack/mutation/topic-content";
13-
import { CategoryContentDTO } from "@/models/content";
1413
import type { TopicDTO } from "@/models/topic";
1514
import type { StickerType } from "@/types/topic";
15+
import type { CategoryContentDTO } from "@repo/types";
1616
import { cn } from "@repo/ui/utils/cn";
1717
import { Handle, NodeProps, NodeResizer, Position, useConnection } from "@xyflow/react";
1818

apps/web/src/components/topic/flow-canvas.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { forwardRef, useMemo } from "react";
44

55
import { useCreateContent } from "@/lib/tanstack/mutation/topic-content";
6-
import type { CategoryContentDTO } from "@/models/content";
6+
import type { CategoryContentDTO } from "@repo/types";
77
import {
88
Background,
99
Connection,

0 commit comments

Comments
 (0)