diff --git a/src/app/home/page.tsx b/src/app/home/page.tsx index 08cd615..f326a33 100644 --- a/src/app/home/page.tsx +++ b/src/app/home/page.tsx @@ -12,7 +12,7 @@ const HomePageHelper = async () => { loggedInProtectedPage( session as { user: { email: string; id: string; randomKey: string }; - } | null + } | null, ); const email = (session && session.user && session.user.email) || ''; const profile = await prisma.profile.findUnique({ @@ -43,7 +43,7 @@ const HomePageHelper = async () => { // profileInterests, // profileProjects, profileInterestNames, - profileProjectNames + profileProjectNames, ); return ; };