Fix moderation type errors

This commit is contained in:
gpt-engineer-app[bot]
2025-11-03 02:06:23 +00:00
parent 007494d21c
commit 9e02748067
8 changed files with 24 additions and 24 deletions

View File

@@ -71,12 +71,12 @@ interface Report {
reported_entity_type: ReportEntityType;
reported_entity_id: string;
report_type: string;
reason: string;
reason: string | null;
status: string;
created_at: string;
reporter_profile?: {
username: string;
display_name?: string;
display_name?: string | null;
};
reported_content?: ReportedContent;
}