Refactor: Database and UI updates

This commit is contained in:
gpt-engineer-app[bot]
2025-11-03 21:32:04 +00:00
parent 63d9d8890c
commit 22f4a68bd8
9 changed files with 349 additions and 34 deletions

View File

@@ -261,6 +261,14 @@ export interface ModerationItem {
/** Pre-loaded submission items with entity data from view */
submission_items?: SubmissionItem[];
/** Pre-loaded review photos from relational review_photos table */
review_photos?: Array<{
id: string;
url: string;
caption?: string | null;
order_index: number;
}>;
}
/**