We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3fbd7b commit 77522bbCopy full SHA for 77522bb
apps/web/src/molecules/posts/post-detail/comments/comment-header.tsx
@@ -3,6 +3,9 @@
3
import React from "react"
4
import { usePathname, useRouter, useSearchParams } from "next/navigation"
5
6
+import { TPostItem } from "database"
7
+import { GetDataSuccessType } from "types"
8
+import { TCommentItem } from "types/comment"
9
import {
10
Select,
11
SelectContent,
@@ -13,10 +16,6 @@ import {
13
16
Typography,
14
17
} from "ui"
15
18
-import { GetDataSuccessType } from "@/types"
-import { TCommentItem } from "@/types/comment"
-import { TPostItem } from "@/types/posts"
19
-
20
type CommentHeaderProps = {
21
post: TPostItem
22
comments: GetDataSuccessType<TCommentItem[]>
0 commit comments