Skip to content

Commit

Permalink
Merge pull request #495 from GenomicDataInfrastructure/sort-by-date
Browse files Browse the repository at this point in the history
feat: sort datasets by issue date
  • Loading branch information
brunopacheco1 authored Nov 6, 2024
2 parents 154aced + 716b8d6 commit b959cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const HomePage = () => {
try {
const response = await datasetList({
limit: 4,
sort: "createdAt desc",
sort: "issued desc",
});
setDatasets(response.data.datasets);
} catch (error) {
Expand Down

0 comments on commit b959cf8

Please sign in to comment.