Skip to content

Commit

Permalink
refactor(page.tsx): remove unnecessary async keyword from HomePage fu…
Browse files Browse the repository at this point in the history
…nction definition
  • Loading branch information
masterkain committed May 27, 2023
1 parent 40d03ff commit 1af7008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Image from 'next/image';
import Link from 'next/link';
import { FaGithub } from 'react-icons/fa';

export default async function HomePage() {
export default function HomePage() {
const currentYear = new Date().getFullYear();

return (
Expand Down

0 comments on commit 1af7008

Please sign in to comment.