feat: Implement comprehensive validation system

This commit is contained in:
gpt-engineer-app[bot]
2025-10-09 18:15:38 +00:00
parent 73eb8a60e5
commit f8232e4555
7 changed files with 704 additions and 1 deletions

View File

@@ -40,6 +40,8 @@ interface ModerationItem {
locked_until?: string;
}
import { ValidationSummary } from './ValidationSummary';
interface QueueItemProps {
item: ModerationItem;
isMobile: boolean;
@@ -152,6 +154,14 @@ export const QueueItem = memo(({
Claimed by You
</Badge>
)}
<ValidationSummary
item={{
item_type: item.submission_type || 'submission',
item_data: item.content,
id: item.id,
}}
compact={true}
/>
</div>
<div className={`flex items-center gap-2 text-muted-foreground ${isMobile ? 'text-xs' : 'text-sm'}`}>
<Calendar className={isMobile ? "w-3 h-3" : "w-4 h-4"} />