Skip to content

Commit

Permalink
Limit the volunteer page to the last 15 work days
Browse files Browse the repository at this point in the history
This saves having to manually archiving old word days

I could also implement paging in the work/days and news pages
  • Loading branch information
eloisetaylor5693 committed Nov 30, 2024
1 parent 67bbecf commit 5a91a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/work-days.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const pageQuery = graphql`
title
}
}
allContentfulWorkDay(sort: { dateOfWorkday: DESC }) {
allContentfulWorkDay(sort: { dateOfWorkday: DESC }, limit: 15) {
nodes {
slug
createdAt
Expand Down

0 comments on commit 5a91a90

Please sign in to comment.