Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
cammoore committed Oct 5, 2024
1 parent 6bd441b commit 02f7bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -43,7 +43,7 @@ const HomePageHelper = async () => {
// profileInterests,
// profileProjects,
profileInterestNames,
profileProjectNames
profileProjectNames,
);
return <HomePage />;
};
Expand Down

0 comments on commit 02f7bfa

Please sign in to comment.