Skip to content

Commit

Permalink
Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbar01234 committed Apr 9, 2024
1 parent 10acd54 commit 2ad6bfb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions src/app/private/[uid]/user/seniors/SeniorsHomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ type SeniorsHomePageProps = {
};

const SeniorsHomePage = ({ user }: SeniorsHomePageProps) => {
console.log(user);
const displaySeniors = (elem: Senior, index: number) => (
const displaySeniors = (elem: Senior) => (
<UserTile
key={elem.id}
senior={elem}
Expand Down
1 change: 0 additions & 1 deletion src/app/private/[uid]/user/seniors/[seniorId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ interface PageProps {
}

const Page = async ({ params }: PageProps) => {
console.log(params);
const senior = await prisma.senior.findUniqueOrThrow({
where: {
id: params.seniorId,
Expand Down

0 comments on commit 2ad6bfb

Please sign in to comment.