feat: Remove all sorting functionality

This commit is contained in:
gpt-engineer-app[bot]
2025-10-13 13:15:14 +00:00
parent 83e10817c5
commit 90ae7d9a41
10 changed files with 13 additions and 468 deletions

View File

@@ -99,26 +99,7 @@ export type StatusFilter = 'all' | 'pending' | 'partially_approved' | 'flagged'
*/
export type QueueTab = 'mainQueue' | 'archive';
/**
* Fields that can be used for sorting the moderation queue
*/
export type SortField = 'created_at' | 'username' | 'submission_type' | 'status' | 'escalated';
/**
* Direction for sorting (ascending or descending)
*/
export type SortDirection = 'asc' | 'desc';
/**
* Configuration for sorting the moderation queue
*/
export interface SortConfig {
/** Field to sort by */
field: SortField;
/** Direction to sort */
direction: SortDirection;
}
// Removed - sorting functionality deleted
/**
* Loading states for the moderation queue