Skip to content

Commit

Permalink
Fix code style issues with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Nov 19, 2023
1 parent 75b8301 commit fee4f6e
Show file tree
Hide file tree
Showing 2 changed files with 3,473 additions and 1,638 deletions.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function HomePage() {
(a, b) => b[1].count - a[1].count,
);

const suggestIndex = Math.floor((Math.random() * (allBlogs.length - 1)));
const suggestIndex = Math.floor(Math.random() * (allBlogs.length - 1));
const suggestPost = allBlogs[suggestIndex];

return (
Expand Down
Loading

0 comments on commit fee4f6e

Please sign in to comment.