Skip to content

Commit

Permalink
Reverse event order in HackathonEvents component (#1026)
Browse files Browse the repository at this point in the history
  • Loading branch information
haydencleary authored Mar 5, 2025
1 parent 2636319 commit 07b1596
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function HackathonEvents({ hackathonSlug }: HackathonEventsProps) {
</div>

{data.events.length ? (
data.events.map(event => {
[...data.events].reverse().map(event => {
const formattedDates = event.formatDisplayDates();

return (
Expand Down

0 comments on commit 07b1596

Please sign in to comment.