fix(report): Instagram audit 에서 릴스 수 행 제거 — 백엔드 미수집
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>main
parent
03c3c7ab21
commit
4f6c30e249
|
|
@ -1,8 +1,7 @@
|
||||||
import { motion } from 'motion/react';
|
import { motion } from 'motion/react';
|
||||||
import { Instagram, AlertCircle, FileText, Users, Eye, ExternalLink } from 'lucide-react';
|
import { Instagram, ExternalLink } from 'lucide-react';
|
||||||
import { SectionWrapper } from './ui/SectionWrapper';
|
import { SectionWrapper } from './ui/SectionWrapper';
|
||||||
import { EmptyState } from './ui/EmptyState';
|
import { EmptyState } from './ui/EmptyState';
|
||||||
import { MetricCard } from './ui/MetricCard';
|
|
||||||
import { DiagnosisRow } from './ui/DiagnosisRow';
|
import { DiagnosisRow } from './ui/DiagnosisRow';
|
||||||
import type { InstagramAudit as InstagramAuditType, InstagramAccount } from '@/features/report/types/report';
|
import type { InstagramAudit as InstagramAuditType, InstagramAccount } from '@/features/report/types/report';
|
||||||
|
|
||||||
|
|
@ -68,25 +67,12 @@ function AccountCard({ account, index }: { key?: string | number; account: Insta
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Format & reels */}
|
{/* Format */}
|
||||||
<div className="space-y-2 mb-4">
|
<div className="space-y-2 mb-4">
|
||||||
<div className="flex items-center justify-between text-sm">
|
<div className="flex items-center justify-between text-sm">
|
||||||
<span className="text-slate-500">콘텐츠 포맷</span>
|
<span className="text-slate-500">콘텐츠 포맷</span>
|
||||||
<span className="font-medium text-[#0A1128]">{account.contentFormat}</span>
|
<span className="font-medium text-[#0A1128]">{account.contentFormat}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center justify-between text-sm">
|
|
||||||
<span className="text-slate-500">릴스 수</span>
|
|
||||||
<span className={`font-medium ${account.reelsCount === 0 ? 'text-[#7C3A4B]' : 'text-[#0A1128]'}`}>
|
|
||||||
{account.reelsCount === 0 ? (
|
|
||||||
<span className="inline-flex items-center gap-1">
|
|
||||||
<AlertCircle size={14} className="text-[#D4889A]" />
|
|
||||||
0 (미운영)
|
|
||||||
</span>
|
|
||||||
) : (
|
|
||||||
account.reelsCount
|
|
||||||
)}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Highlights */}
|
{/* Highlights */}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue