Skip to content

Commit

Permalink
fix : add back co-submitted contributions to contribute page
Browse files Browse the repository at this point in the history
  • Loading branch information
Juknum committed Aug 16, 2024
1 parent d80ff5d commit 52905a5
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/app/(pages)/(protected)/contribute/submit/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,17 @@ const SubmitPage = () => {
/>
))
}
{coContributions.filter((c) => c.status === Object
.values(Status)[activeTab])
.map((contribution) => (
<ContributionPanelItem
key={contribution.id}
contribution={contribution}
onClick={handleContributionClick}
styles={getBorderStyles(contribution)}
/>
))
}
</Group>
</Stack>
</Group>
Expand Down

0 comments on commit 52905a5

Please sign in to comment.