Skip to content

Commit

Permalink
more changes with on PR action
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaZel committed Feb 29, 2024
1 parent a6799fb commit 8690e73
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/app/private/[uid]/admin/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ const AdminHomePageWrapper = async () => {
});


return <AdminHomePage chapters={chapters} />;
return <AdminHomePage

chapters={chapters} />;
};

export default AdminHomePageWrapper;
4 changes: 3 additions & 1 deletion src/app/private/[uid]/admin/home/resources/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ const AdminResourcesPage =
async () => {
const resources = await prisma.resource.findMany();

return <DisplayResources showRole={true} resources={resources} />;
return <DisplayResources

showRole={true} resources={resources} />;
};

export default
Expand Down
3 changes: 3 additions & 0 deletions src/app/private/[uid]/admin/pending-chapters/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ const PendingChapters = async () => {
email={pendingChapter.universityEmail}
leadershipExperience={pendingChapter.leadershipExperience}
motivation={pendingChapter.motivation}



availabilities={pendingChapter.availabilities}
questions={pendingChapter.questions}
/>
Expand Down

0 comments on commit 8690e73

Please sign in to comment.