Skip to content

Commit

Permalink
Remove minor lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
naru200 committed Oct 25, 2024
1 parent c0ed780 commit c620026
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion website/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ const sessions = data.reduce((acc: Acc, session) => {
return acc;
}, {});
const dates = Object.keys(sessions).sort((a, b) => parseInt(b) - parseInt(a));
const dates = Object.keys(sessions).sort(
(a, b) => Number.parseInt(b) - Number.parseInt(a),
);
---

<PageLayout title={HOME.TITLE} description={HOME.DESCRIPTION}>
Expand Down

0 comments on commit c620026

Please sign in to comment.