"use client" import { useTranslations } from "next-intl" import { Tooltip } from "~/components/ui/Tooltip" import { cn, scrollTo } from "~/lib/utils" import { useCheckComment, useGetComments } from "~/queries/page" import { Button } from "../ui/Button" export const ReactionComment = ({ characterId, noteId, }: { characterId?: number noteId?: number }) => { const t = useTranslations() const comments = useGetComments({ characterId: characterId, noteId: noteId, }) const isCommented = useCheckComment({ noteCharacterId: characterId, noteId: noteId, }) return ( <>