Skip to content

Commit

Permalink
fix: code not updated to collections system (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikskog authored Nov 10, 2023
1 parent 4c67ac6 commit da9a87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/src/pages/committee/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const CommitteePage = () => {

return (
<ul className="text-blue-11 text-center text-2xl">
{data?.map((committee) => (
{data?.data.map((committee) => (
<li className="text-blue-11 hover:text-blue-9 cursor-pointer" key={committee.id}>
<Link href={`committee/${committee.id}`}>{committee.name}</Link>
</li>
Expand Down

2 comments on commit da9a87f

@vercel
Copy link

@vercel vercel bot commented on da9a87f Nov 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

rif – ./apps/rif

dev.interesse.online.ntnu.no
rif-two.vercel.app
rif-dotkom.vercel.app
rif-git-main-dotkom.vercel.app

@vercel
Copy link

@vercel vercel bot commented on da9a87f Nov 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web – ./apps/web

web-dotkom.vercel.app
web-git-main-dotkom.vercel.app
web-pi-umber.vercel.app
dev.web.online.ntnu.no

Please sign in to comment.