From dbd6aeb11cd35466847b0af3b71e6ec3778e56af Mon Sep 17 00:00:00 2001 From: highperfocused Date: Thu, 27 Nov 2025 20:49:03 +0100 Subject: [PATCH] Remove unused CardHeader and CardTitle imports in CommentsSection component --- src/components/comments/CommentsSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/comments/CommentsSection.tsx b/src/components/comments/CommentsSection.tsx index 6de0e99..b0904d0 100644 --- a/src/components/comments/CommentsSection.tsx +++ b/src/components/comments/CommentsSection.tsx @@ -1,5 +1,5 @@ import { useComments } from '@/hooks/useComments'; -import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; +import { Card, CardContent } from '@/components/ui/card'; import { Skeleton } from '@/components/ui/skeleton'; import { MessageSquare } from 'lucide-react'; import { cn } from '@/lib/utils';