| 23 | } |
| 24 | |
| 25 | interface CommentCardProps { |
| 26 | comment: CommentData |
| 27 | extensionId: Id<"extensions"> |
| 28 | currentUserId?: string |
| 29 | isAdmin?: boolean |
| 30 | isLiked?: boolean |
| 31 | isAuthenticated?: boolean |
| 32 | isReply?: boolean |
| 33 | } |
| 34 | |
| 35 | export function CommentCard({ |
| 36 | comment, |
nothing calls this directly
no outgoing calls
no test coverage detected