From 85e888399c79dee931a51219fd6cba9c97d3c6e6 Mon Sep 17 00:00:00 2001 From: Sean Crowley Date: Tue, 14 Oct 2025 14:35:36 -0400 Subject: [PATCH] Update the firestore-requests-table so that requests are listed newest first I dont use react, and have not run this locally --- src/components/Firestore/Requests/RequestsCard/Table/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Firestore/Requests/RequestsCard/Table/index.tsx b/src/components/Firestore/Requests/RequestsCard/Table/index.tsx index e5e9e4a89..264984022 100644 --- a/src/components/Firestore/Requests/RequestsCard/Table/index.tsx +++ b/src/components/Firestore/Requests/RequestsCard/Table/index.tsx @@ -136,7 +136,7 @@ export const RequestsTableWrapper: React.FC< const evaluations = useFirestoreRequests(databaseId).requests; // TODO: Add support for filtering. - const filteredEvaluations = evaluations; + const filteredEvaluations = evaluations.reverse(); // .reverse() to have newest requests listed first return (