Skip to content

Commit

Permalink
latest to oldest feedback sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
tudddorrr committed Oct 22, 2024
1 parent 84ffbd4 commit 4f0d5a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function Feedback() {
} = useFeedback(activeGame, categoryInternalNameFilter, debouncedSearch, page)
const { feedbackCategories, loading: categoriesLoading, error: categoriesError } = useFeedbackCategories(activeGame)

const sortedFeedback = useSortedItems(feedback, 'createdAt', 'asc')
const sortedFeedback = useSortedItems(feedback, 'createdAt')

const navigate = useNavigate()

Expand Down

0 comments on commit 4f0d5a7

Please sign in to comment.