We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf8d9c commit 2658856Copy full SHA for 2658856
src/pages/index.js
@@ -16,7 +16,9 @@ const IndexPage = ({ data: { allEvent } }) => {
16
const futureMeetups = sortedCities.filter(
17
city => isFuture(city.node.info.date) || isToday(city.node.info.date)
18
)
19
- const pastMeetups = sortedCities.filter(city => !isFuture(city.node.info.date))
+ const pastMeetups = sortedCities.filter(
20
+ city => !isFuture(city.node.info.date) && !isToday(city.node.info.date)
21
+ )
22
23
return (
24
<Layout>
0 commit comments