Skip to content

Commit

Permalink
fix(lint): fix other linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Nov 21, 2023
1 parent c3f472c commit 95cba11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/conferences/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export const entriesToBaseProps = (
content: parseMarkdown(entry.body) as MarkdownRootNode,
}))
.filter((entry) => !entry.draft || process.env.NODE_ENV === 'development')
.sort(({ date: dateA }: any, { date: dateB }: any) =>
.sort(({ date: dateA }: { date: string }, { date: dateB }: { date: string }) =>
Date.parse(dateA) > Date.parse(dateB) ? -1 : 1
);

Expand Down

0 comments on commit 95cba11

Please sign in to comment.