mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 19:31:13 -05:00
feat: Remove all sorting functionality
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user