[FE-COMP-012] fix: Remove unused refetchReplies variable

This commit is contained in:
senke 2025-12-25 11:52:13 +01:00
parent f39c7f1aa7
commit 9a229f1d81

View file

@ -66,7 +66,6 @@ export function CommentThread({
const {
data: repliesData,
isLoading: isLoadingReplies,
refetch: refetchReplies,
} = useQuery({
queryKey: ['commentReplies', comment.id],
queryFn: () => getReplies(comment.id, 1, 20),