Fix: Implement comprehensive sorting fixes

This commit is contained in:
gpt-engineer-app[bot]
2025-10-13 12:51:21 +00:00
parent 3cd5904c31
commit f6891296d6
3 changed files with 54 additions and 15 deletions

View File

@@ -57,7 +57,7 @@ export function sortModerationItems(
export function getDefaultSortConfig(): SortConfig {
return {
field: 'created_at',
direction: 'asc',
direction: 'desc', // Newest first by default
};
}